Is it possible to read image as text and send it over network? Is yes, then how can we do this?

link|improve this question

3  
could you give some background on the usecase: where the image originates (file/generated). What kind of process is sending the image, which transport, who's receiving it (other program, other java program, a web browser, ...) ? – maasg Jun 26 '11 at 13:17
feedback

1 Answer

up vote 5 down vote accepted

You could base64 encode the image to produce a (text) string.

Apache Commons Codec has a Base64 implementation that you can easily use:

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

// Read the byte array from file, DB, etc
byte[] imageByteArray = getImageByteArray();

String base64Image = Base64.encodeBase64String(imageByteArray);
link|improve this answer
The thing I dislike about Apache commons' Base64 is that it includes some fugly APIs, like byte[] encodeBase64(byte[]). In this case, the OP ended up using one of those and having problems: stackoverflow.com/questions/6484369/… – ninjalj Jun 27 '11 at 20:41
feedback

Your Answer

 
or
required, but never shown

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