我将byte []转换为字符串。每次我将字节数组转换为字符串时,它每次都会有一个前缀类型的字符。我尝试过不同的字符,大写字母等。还有前缀。
当我将字节代码写入系统输出时,它仍然具有字符。
System.out.write(theByteArray);
System.out.println(new String(theByteArray, "UTF-8"));
当我将文本写入文件时,似乎字节数组打印得完美无缺,但随后我扫描它并最终得到奇怪的前缀符号......
要加密的文字>
"aaaa"
解密并转换为字符串时的文字>
"aaaa"
角色似乎消失了,这是一张图片。
我想将给定的字符串与另一个字符串进行比较,有点像解密密码,并将其与数据库进行比较。如果匹配,则它提供访问权限。
生成此字节代码的代码。
请记住,我正在查看的字节是decData,这不是我的代码。
byte[] encData;
byte[] decData;
File inFile = new File(fileName+ ".encrypted");
//Generate the cipher using pass:
Cipher cipher = FileEncryptor.makeCipher(pass, false);
//Read in the file:
FileInputStream inStream = new FileInputStream(inFile);
encData = new byte[(int)inFile.length()];
inStream.read(encData);
inStream.close();
//Decrypt the file data:
decData = cipher.doFinal(encData);
//Figure out how much padding to remove
int padCount = (int)decData[decData.length - 1];
//Naive check, will fail if plaintext file actually contained
//this at the end
//For robust check, check that padCount bytes at the end have same value
if( padCount >= 1 && padCount <= 8 ) {
decData = Arrays.copyOfRange( decData , 0, decData.length - padCount);
}
FileOutputStream target = new FileOutputStream(new File(fileName + ".decrypted.txt"));
target.write(decData);
target.close();
答案 0 :(得分:0)
看起来encData包含BOM,我认为Java在使用BOM读取流时,会将BOM视为UTF-8字符,从而导致“前缀”。您可以尝试此处建议的解决方案:Reading UTF-8 - BOM marker。
另一方面,字节顺序标记是可选的,不建议用于UTF-8编码。所以要问的两个问题是: