Java Base641 [JAVA] 가끔 써먹을 base64 인코딩 전용 메서드 생성. Java에서 File 이미지 데이터를 Base64 인코딩을 위한 아주 간단한 메서드를 기록(?) 공유 하고자 한다. fileToString(file 데이터만 넘겨주면 끝. public String fileToString(File file) { String fileString = new String(); FileInputStream inputStream = null; ByteArrayOutputStream byteOutStream = null; try { inputStream = new FileInputStream(file); int len = 0; byte[] buf = new byte[1024]; while ((len = inputSteam.read(buf)) != -1) { byteOutSteam.w.. 2021. 12. 22. 이전 1 다음