java中如何判断一个字符是否是GB2312
我想写一个java函数,例如: 如果有一个字符不在 GB2312 中,则返回 false
Boolean isGB2312(String chinese) {
......
}
I would like write a java function like:
if one char is not in GB2312, return false
Boolean isGB2312(String chinese) {
......
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
更多
发布评论
评论(2)
我已经有一段时间没有使用Java了,但是我知道Iconv,当存在非法字符时它会抛出异常,因此当捕获异常时可以返回false,当转换为UTF-8时返回true没有问题。
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.
更新:
作为静态方法:
UPDATE:
As a static method: