Created
October 11, 2011 00:27
-
-
Save utsengar/1276960 to your computer and use it in GitHub Desktop.
Encode a file to base64 binary in Java
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
import org.apache.commons.codec.binary.Base64; | |
private String encodeFileToBase64Binary(String fileName) | |
throws IOException { | |
File file = new File(fileName); | |
byte[] bytes = loadFile(file); | |
byte[] encoded = Base64.encodeBase64(bytes); | |
String encodedString = new String(encoded); | |
return encodedString; | |
} | |
private static byte[] loadFile(File file) throws IOException { | |
InputStream is = new FileInputStream(file); | |
long length = file.length(); | |
if (length > Integer.MAX_VALUE) { | |
// File is too large | |
} | |
byte[] bytes = new byte[(int)length]; | |
int offset = 0; | |
int numRead = 0; | |
while (offset < bytes.length | |
&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) { | |
offset += numRead; | |
} | |
if (offset < bytes.length) { | |
throw new IOException("Could not completely read file "+file.getName()); | |
} | |
is.close(); | |
return bytes; | |
} |
A single line solution
byte[] bytes = Base64.getEncoder().encode(Files.readAllBytes(new File("filePath").toPath()));
System.out.print(bytes);
This is working like a charm, i am not converting image to string i just needed it in encoded format.....Thanks
Why not use Base64.encodeBase64String(bytes)?
Guys cmon this was posted 10 years ago...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@albfan, Hi, I am trying this but getting exception,
java.io.FileNotFoundException: android.content.res.AssetManager$AssetInputStream@197e3549: open failed: ENOENT (No such file or directory)