摘要:
將寫出的字異或上一個數,這個數就是密碼,解密的時候再次異或就可以了 public static void main(String [] args){ BufferedInputStream bis = new BufferedInputStream(new FileInputStream("紫薇.j 阅读全文
摘要:
FileInputStream fis = new FileInputStream ("test.txt");//创建读取管道 byte[] arr = new byte[2]; //创建字节数组 int a = fis.read(arr); //将文件上的字节读取到字节数组中(a为读取到的有效字节 阅读全文