plotters / mobile-rss-reader

Automatically exported from code.google.com/p/mobile-rss-reader
0 stars 0 forks source link

Character encoding problems #7

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
XML parse should decode atleast the following characters (see attached
screenshot):
- #8217; to '
- #8220; to ´
- #8221; to `

Original issue reported on code.google.com by tlaukka...@gmail.com on 8 Oct 2006 at 5:41

Attachments:

GoogleCodeExporter commented 9 years ago
I was able to add these conversions to RssFeedParser.java using the simple 
String
replacer:
    text = replace(text, "’", "'");
    text = replace(text, "“", "\"");
    text = replace(text, "”", "\"");

Original comment by tlaukka...@gmail.com on 12 Oct 2006 at 7:37