Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the need to retrieve the dataURI scheme of a file in Java, is it possible for me to retrieve this in the following format?

data:application/octet-stream;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA==

I've been looking for something like it, but had no luck so far.

Thanks in advance for the attention.

share|improve this question

1 Answer

I don't think there is a utility function specifically for creating it, but it should be as simple as:

import org.apache.commons.codec.binary.Base64;

byte[] toEncode = { 0xaa, 0xbb, 0xcc };
Base64 base64NoLineWrap = new Base64(0);
String encodedData = base64NoLineWrap.encodeBase64String(toEncode);
String dataUri = "data:application/octet-stream;base64," + encoded;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.