您的位置:首页 > 编程语言 > Java开发

java中二进制转换为字节数组

2015-09-29 14:19 447 查看
http://hw1287789687.iteye.com/blog/1882276

@org.junit.Test
public void test055() throws IOException {
File inFile = new File("d:\\Chrysanthemum.jpg");
FileInputStream fileInputStream = new FileInputStream(inFile);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
int i;
//转化为字节数组流
while ((i = fileInputStream.read()) != -1) {
byteArrayOutputStream.write(i);
}
fileInputStream.close();
// 把文件存在一个字节数组中
byte[] filea = byteArrayOutputStream.toByteArray();

byteArrayOutputStream.close();
String encoding = "ISO-8859-1";
String fileaString = new String(filea, encoding);
System.out.println(fileaString);
// 写入文件
FileOutputStream fileOutputStream = new FileOutputStream("d:/b.png");
fileOutputStream.write(fileaString.getBytes(encoding));
fileOutputStream.flush();
fileOutputStream.close();

}

 注意:

(1)使用ByteArrayOutputStream 来把二进制流转化为字节数组流;

(2)把字节数组转化为String类型时,一定要使用ISO-8859-1编码;

String encoding = "ISO-8859-1";

String fileaString = new String(filea, encoding);

(3)通过字符串获取字节数组时,一定要使用ISO-8859-1编码:

fileOutputStream.write(fileaString.getBytes(encoding));
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android