A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package com.heima.test;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class Test1 {

        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);   //一个数异或另一个数2次,值不变.
                }
               
                bis.close();
                bos.close();
        }

}

个人觉得这个小程序很有用,只要是文件形式,例如安装包,文本文件等都可以加密,

用到的原理很简单: 一个数异或另一个数2次,值不变

上面程序中,文件的每个字节异或上一个数,这个数就是密钥,解密的时候再次异或就可以了.

2 个回复

倒序浏览
zhoujunjie 发表于 2016-5-23 01:08
66666666666666666666666666

public Demo1_66666() {
public static void main (Strnig[] args) {

while(true){
System.out.println("你好6,666")
}
}


}
回复 使用道具 举报
你说既然留不住你
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马