gpt4 book ai didi

java - 编码和解码 UTF-8 字节数组与字符串

转载 作者:行者123 更新时间:2023-11-30 07:16:54 25 4
gpt4 key购买 nike

我正在研究跨平台加密系统。其中一项要求是轻松加密和解密应用程序代码中的字符串。

加密类工作完美,但我在 java 端的字符串编码方面遇到了问题。

目前,我有以下静态方法:

public static String encrypt(String key, String data)
{
byte[] decoded_key;
byte[] decoded_data;
try
{
decoded_key = key.getBytes("UTF-8");
decoded_data = data.getBytes("UTF-8");
}
catch (Exception e)
{
//Not Supposed to happen.
throw new RuntimeException();
}

if(decoded_key.length != 16)
throw new IllegalArgumentException("Key length must be of 16 bytes. Given is " + decoded_key.length + ".");

try
{
return(IOUtils.toString(encrypt(decoded_key, decoded_data), "UTF-8"));
}
catch (Exception e)
{
//Not Supposed to happen.
throw new RuntimeException();
}
}

public static String decrypt(String key, String data)
{
byte[] decoded_key;
byte[] decoded_data;
try
{
decoded_key = key.getBytes("UTF-8");
decoded_data = data.getBytes("UTF-8");
}
catch (Exception e)
{
//Not Supposed to happen.
throw new RuntimeException();
}

if(decoded_key.length != 16)
throw new IllegalArgumentException("Key length must be of 16 bytes. Given is " + decoded_key.length + ".");

try
{
return(IOUtils.toString(decrypt(decoded_key, decoded_data), "UTF-8"));
}
catch (Exception e)
{
//Not Supposed to happen.
throw new RuntimeException();
}
}

我的单元测试在解密时失败了。我运行了一个测试,我将编码的 UTF-8 数据字节数组 encoded_dataIOUtils.toString(encoded_data, "UTF-8").getBytes( "UTF-8") 并且出于某种原因,它们完全是不同的数组。难怪我的解密算法失败了。

从 java 字符串转换为 UTF-8 字节数组并返回到 java 字符串的正确过程是什么?

最佳答案

问题是您正在将加密数据转换为字符串。加密数据是二进制的,不是字符串数据。 UTF-8 是一种具有特定编码格式的字符集。任意二进制数据不是有效的 UTF-8 数据。当您将加密数据转换为字符串时,“无效”字符很可能会被替换为 ? 无效字符。

如果您想将任意二进制数据(又名加密数据)转换为字符串,您需要使用一些二进制->文本转换,如 Base64。

关于java - 编码和解码 UTF-8 字节数组与字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16591677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com