728x90 반응형 File1 [JAVA] 파일 암호화 (Encrypt file using java) 1. 이미지 파일 암호화/복호화 public class ImgCryptUtils { private int KEY = 123; // key is act as password to Encrypt and Decrypt the Image private String FILE_PATH = "C:\\Users\\moonsiri\\Downloads\\photo.jpg"; public void encrypt() throws IOException { // Selecting a Image for operation FileInputStream fis = new FileInputStream(FILE_PATH); // Converting Image into byte array, create a array of same size .. 2021. 11. 1. 이전 1 다음 728x90 반응형