我已将jcharset库添加到构建路径中,并且在我的代码中,我尝试使用图书馆的 GSM 字符集从另一个字符串创建一个新字符串。
String example_string new String(another_string.getBytes("SCGSM"));
但是那部分代码给了我一个例外:
java.io.UnsupportedEncodingException: SCGSM
我究竟做错了什么?
我已将jcharset库添加到构建路径中,并且在我的代码中,我尝试使用图书馆的 GSM 字符集从另一个字符串创建一个新字符串。
String example_string new String(another_string.getBytes("SCGSM"));
但是那部分代码给了我一个例外:
java.io.UnsupportedEncodingException: SCGSM
我究竟做错了什么?