vote up 6 vote down star

Is there an easy way to avoid dealing with text encoding problems?

flag

50% accept rate

3 Answers

vote up 5 vote down check

You can't really avoid dealing with the text encoding issues, but there are existing solutions,

Reader to InputStream: http://www.koders.com/java/fid0A51E45C950B2B8BD9365C19F2626DE35EC09090.aspx

Writer to OutputStream: http://www.koders.com/java/fid5A2897DDE860FCC1D9D9E0EA5A2834CC62A87E85.aspx?s=md5

You just need to pick the encoding of your choice

link|flag
1  
FYI: the ReaderInputStream code has a bug in the way it reads bytes (it will not work for all encodings). Proof: illegalargumentexception.blogspot.com/2009/05/… There is an open bug: issues.apache.org/bugzilla/show_bug.cgi?id=40455/… – McDowell May 8 at 9:30
vote up 0 vote down

The obvious names for these classes are ReaderInputStream and WriterOutputStream. Unfortunately these are not included in the Java library. However, google is your friend.

I'm not sure that it is going to get around all text encoding problems, which are nightmarish.

There is an RFE, but it's Closed, will not fix.

link|flag
vote up 0 vote down

Are you trying to write the contents of a Reader to an OutputStream? If so, you'll have an easier time wrapping the OutputStream in an OutputStreamWriter and write the chars from the Reader to the Writer, instead of trying to convert the reader to an InputStream:

final Writer writer = new BufferedWriter(new OutputStreamWriter( urlConnection.getOutputStream(), "UTF-8" ) );
int charsRead;
char[] cbuf = new char[1024];
while ((charsRead = data.read(cbuf)) != -1) {
    writer.write(cbuf, 0, charsRead);
}
writer.flush();
// don't forget to close the writer in a finally {} block
link|flag

Your Answer

Get an OpenID
or

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