Tagged Questions
The gb2312 tag has no wiki summary.
4
votes
2answers
81 views
Java bug? Can't read GB2312 file with Scanner directly
I have a file in GB3212 encoding (Chinese). File is downloaded from here http://lingua.mtsu.edu/chinese-computing/statistics/char/list.php?Which=MO as is with wget under Windows and stored into ...
4
votes
2answers
3k views
display chinese character in eclipse console output
I am trying to display some Chinese characters in the GB2312 encoding in the eclipse console. I realize that in Run Dialog -> Common tab -> Console Encoding, I can choose additional encodings other ...
2
votes
1answer
79 views
Encoding GBK2312 Condundrum
I am an amateur coder and I have a small problem.
My goal is to have one text input with two buttons.
The first button uses a bit of
Javascript called SundayMorning to
translate the text (to ...
1
vote
2answers
206 views
How to find whether a character is GB2312 in java
I would like write a java function like:
if one char is not in GB2312, return false
Boolean isGB2312(String chinese) {
......
}
1
vote
3answers
10k views
Convert GB2312 to UTF-8
I have a text file that contains localized language strings that is currently encoded in GB2312 (simplified Chinese), but all of my other language files are in UTF-8. I am finding it very difficult to ...
0
votes
2answers
152 views
How to parse RSS with GB2312 encoding in Python
I have a RSS feed shich is encoded in GB2312
When I am trying to parse it using following code:
for item in XML.ElementFromURL(feed).xpath('//item'):
title = item.find('title').text
It is not ...
0
votes
0answers
209 views
charset issue while parsing the Mimemessage using Java
I have a issue with the chinese characters while parsing the mime message (MimeBodypart). In the MimeMessage charset is mentioned as "gb2312". i am using the MimeBodyPart.getContent() to get the ...
0
votes
2answers
415 views
PHP decode GB2312 (updated)
I'm working on an IMAP email script and I have some lines coded in GB2312 (which I assume is Chinese encoding), looks like this =?GB2312?B?foobarbazetc
How can I start working with this string? I ...