当前位置:   article > 正文

字符串 二进制数字 转换 java_如何将二进制数据转换为字符串并返回到Java中?

二进制转化为字符串 然后 转回来

String(byte[])

将数据视为默认字符编码。因此,如何将字节从8位值转换为16位Java Unicode字符将不仅在操作系统之间发生变化,而且甚至可以在同一台机器上使用不同代码页的不同用户之间变化。此构造函数只适用于解码您自己的文本文件之一。不要尝试将任意字节转换为字符爪哇!

编码为

base64

是一个很好的解决方案。这是通过SMTP(电子邮件)发送文件的方式。(免费)阿帕奇

Commons Codec

项目将完成这项工作。

byte[] bytes = loadFile(file);

//all chars in encoded are guaranteed to be 7-bit ASCII

byte[] encoded = Base64.encodeBase64(bytes);

String printMe = new String(encoded, "US-ASCII");

System.out.println(printMe);

byte[] decoded = Base64.decodeBase64(encoded);

import java.io.*;

import java.nio.channels.*;

import javax.xml.bind.DatatypeConverter;

public class EncodeDecode {

public static void main(String[] args) throws Exception {

File file = new File("/bin/ls");

byte[] bytes = loadFile(file, new ByteArrayOutputStream()).toByteArray();

String encoded = DatatypeConverter.printBase64Binary(bytes);

System.out.println(encoded);

byte[] decoded = DatatypeConverter.parseBase64Binary(encoded);

// check

for (int i = 0; i < bytes.length; i++) {

assert bytes[i] == decoded[i];

}

}

private static T loadFile(File file, T out)

throws IOException {

FileChannel in = new FileInputStream(file).getChannel();

try {

assert in.size() == in.transferTo(0, in.size(), Channels.newChannel(out));

return out;

} finally {

in.close();

}

}

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/618049
推荐阅读
相关标签
  

闽ICP备14008679号