이 또는 - 간단 한 암호 화 방식

a^b^b=a
 
    @Test
	public void updateFile()  throws Exception{
		File file = new File("C:/Users/Administrator/Desktop/entry/bbb.txt");
		FileInputStream fis = new FileInputStream(file);
		FileOutputStream fos = new FileOutputStream("C:/Users/Administrator/Desktop/entry/ccc.txt");
		int content = 0; //              
		while((content = fis.read())!=-1){  //           ,        ,           content    。
			fos.write(content^12); //      
		}	
		//    
		fis.close();
		fos.close();
	}

좋은 웹페이지 즐겨찾기