Created
September 29, 2022 14:22
-
-
Save mnzit/d5a84714c45874a0111a0871be9b4a7c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static String convertZipFileToBaseEncodeString() { | |
File originalFile = new File("multifiles.zip"); | |
String encodedBase64 = null; | |
try { | |
FileInputStream fileInputStreamReader = new FileInputStream(originalFile); | |
byte[] bytes = new byte[(int) originalFile.length()]; | |
fileInputStreamReader.read(bytes); | |
encodedBase64 = new String(Base64.encodeBase64(bytes)); | |
} catch (FileNotFoundException e) { | |
e.printStackTrace(); | |
} catch (IOException e) { | |
e.printStackTrace(); | |
} | |
return encodedBase64; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment