I would like write a java function like: if one char is not in GB2312, return false
Boolean isGB2312(String chinese) {
......
}
|
|
UPDATE: As a static method:
|
||||
|
|
|
I haven't used Java for a while, but I know of Iconv, which can throw an exception when there is illegal character, so you can return false when an exception is caught, and return true when the conversion to UTF-8 went through without problem. |
|||
|
|