Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please tell me what should I do to this code, I'am about to convert a byte data to base64 string. The code below will only just translate the image file to inputstream and I can't figure out how am I going to convert it to base64.

var MyView:NotesView = database.getView("uploadforms");
var uploadPhoto:NotesDocumentCollection = MyView.getAllDocumentsByKey("uploadphoto");
var input:java.io.InputStream = uploadPhoto.getFirstDocument().getAttachment("photo").getInputStream();

var data = -1;
var myArray = new Array();

while ((data = input.read()) != -1) {

}
share|improve this question

1 Answer

You can use the sun.misc.BASE64Encoder class for this:

var MyView:NotesView = database.getView("uploadforms");
var uploadPhoto:NotesDocumentCollection = MyView.getAllDocumentsByKey("uploadphoto");
var input:java.io.InputStream = uploadPhoto.getFirstDocument().getAttachment("photo").getInputStream();

var base64Enc = new sun.misc.BASE64Encoder();
var output = new java.io.ByteArrayOutputStream();
base64Enc.encode( input, output );
output.toString()

EDIT: As written in the comments, better use com.ibm.misc.BASE64Encoder.

share|improve this answer
thank you sou much Mr. Sven, is this code going to read all of my images inside my Lotus notes database? – Kim Castillo Dec 20 '12 at 2:22
Hi Sven, I want to test your code given. I want to display the particular base64 on my web page. How can I do that? – Kim Castillo Dec 20 '12 at 2:43
1  
Open the Domino Designer, press F1. – Sven Hasselbach Dec 20 '12 at 5:55
1  
Please be aware that this class is UNSUPPORTED and should not be used in production code. Please use other libraries such as found in apache commons – jjtbsomhorst Dec 20 '12 at 8:23
1  
@jjtbsomhorst: You mean the Base64Encoder? Luckily there are some others built-in to Domino you can use in XPages: com.ibm.misc.BASE64Encoder, javax.xml.bind.DatatypeConverter, com.ibm.commons.util.io.base64.Base64. So no need to add Apache Commons. – Mark Leusink Dec 20 '12 at 9:31
show 3 more comments

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.