Without more detailed debugging info, I would guess that there is a character coding issue.
If the input stream reader is expecting UTF-8, the copyright symbol, U+00AA, would be three bytes: 0xE2, 0x84, 0xA2. In Latin-1/ISO-8859-1, it would be 0xAA. However, 0xAA is an invalid UTF-8 code. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

