1.定义一个字节数组,将其输出到屏幕上。
2.将一个图片的内容读取到字节数组中。
请高手帮忙实现下,谢谢、、
因为积分不多了,就只能给五分啦、、见谅啊!
1.定义一个字节数组,将其输出到屏幕上。
2.将一个图片的内容读取到字节数组中。
请高手帮忙实现下,谢谢、、
因为积分不多了,就只能给五分啦、、见谅啊!
先用FileInputStream从这个图片读取输入流,然后包装成字节数组。
这样就可以了!
FileInputStream fileIn = new FileInputStream(path);
FileOutputStream fileOut = new FileOutputStream(newPath);
BufferedOutputStream bufOut = new BufferedOutputStream(fileOut); byte[] buf = new byte[512]; while (fileBuff.read(buf) != -1) { bufOut.write(buf);
}