Skip to content

Instantly share code, notes, and snippets.

@mnzit
Created September 29, 2022 14:22
Show Gist options
  • Save mnzit/d5a84714c45874a0111a0871be9b4a7c to your computer and use it in GitHub Desktop.
Save mnzit/d5a84714c45874a0111a0871be9b4a7c to your computer and use it in GitHub Desktop.
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