黑马程序员技术交流社区
标题:
图片文件加密
[打印本页]
作者:
haojingwei310
时间:
2016-6-16 22:49
标题:
图片文件加密
public class File06 {
/**
* 要求: 图片加密 解密
*
* 分析: 一个数被异或两次就得到该数
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("copy.jpg"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("copy2.jpg"));
int b;
while((b = bis.read()) != -1) {
bos.write(b ^ 123);
}
bis.close();
bos.close();
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2