摘要: 练习 实现图片加密操作。 提示 int b = 0; while((b = fis.read()) != -1){ fos.write(b^5); } //图片的加密 @Test public void test1(){ FileInputStream fis = null; FileOutputS 阅读全文
posted @ 2022-01-26 18:04 摘星丶仙 阅读(20) 评论(0) 推荐(0)