'str = new String(bytes," UTF8")'和'bytes = str.getBytes(" UTF8")'中的字节值不一样 [英] bytes in 'str = new String(bytes, "UTF8") ' and 'bytes = str.getBytes("UTF8")' not the same value

查看:161
本文介绍了'str = new String(bytes," UTF8")'和'bytes = str.getBytes(" UTF8")'中的字节值不一样的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以看到它们与我创建字符串的字节不同!
我用AES / CBC / PKCS5Padding来获取字符串。

I can see they are different than the bytes I created the string with! I have used "AES/CBC/PKCS5Padding" to get the string.

public static void main(String[] args) {

    try {
        int randomNumber = CNStationQueueUtil.randInt(0, 99999);
        String key = "AES_KEY_TAKENUMB";
        byte[] bytes = EncryptHelper.encrypt(key, String.format("%%%d%%%d", 1001, randomNumber));
        String str = new String(bytes, "UTF8");
        System.out.println("str = " + str);
        System.out.println();
        byte[] utf8Bytes = str.getBytes("UTF8");
        printBytes(utf8Bytes, "utf8Bytes");

    } catch (Exception e) {
        e.printStackTrace();
    }

}



public class EncryptHelper {

    public static byte[] encrypt(String key, String value)
            throws GeneralSecurityException {

        byte[] raw = key.getBytes(Charset.forName("UTF-8"));
        if (raw.length != 16) {
            throw new IllegalArgumentException("Invalid key size.");
        }

        SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
        Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
        cipher.init(Cipher.ENCRYPT_MODE, skeySpec,
                new IvParameterSpec(new byte[16]));
        return cipher.doFinal(value.getBytes(Charset.forName("UTF-8")));
    }

    public static String decrypt(String key, byte[] encrypted)
            throws GeneralSecurityException {

        byte[] raw = key.getBytes(Charset.forName("UTF-8"));
        if (raw.length != 16) {
            throw new IllegalArgumentException("Invalid key size.");
        }
        SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");

        Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
        cipher.init(Cipher.DECRYPT_MODE, skeySpec,
                new IvParameterSpec(new byte[16]));
        byte[] original = cipher.doFinal(encrypted);

        return new String(original, Charset.forName("UTF-8"));
    }
}


推荐答案

您将字符串解码为 UTF-8 这是因为您将字节编码为UTF-8或兼容的东西。你不能只取一个 byte [] 的随机字节并把它变成一个字符串,因为它是二进制数据而不是文本。

When you decode a string as UTF-8 it is because you encoded the bytes as UTF-8 or something compatible. You can't just take a byte[] of random bytes and turn it into a String because it is binary data not text.

你可以做的是使用Base64编码器作为二进制文件,使用Base64解码器将其转换回原始字节。

What you can do is use a Base64 encoder for the binary and a Base64 decoder to turn it back into the original bytes.

一种hacky方式这是使用 ISO-8859-1 ,但这通常是一个坏主意,因为你混淆了二进制和文本数据。

A hacky way of doing this is to use ISO-8859-1, but this is a bad idea generally as you are confusing binary and text data.

这篇关于'str = new String(bytes," UTF8")'和'bytes = str.getBytes(" UTF8")'中的字节值不一样的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆