我有一个相当于 Objective-C stringWithUTF8String: 的 Java 吗?
我需要将以下内容从 Objective-C 转换为 Java:
char key[] = {'9' + 1, 'U' + 2, '6' + 3, 'S' + 4, '7' + 5} return [NSString stringWithUTF8String:key]
我不知道如何解决这个问题..有人有什么想法吗?
I need to convert the following from Objective-C to Java:
char key[] = {'9' + 1, 'U' + 2, '6' + 3, 'S' + 4, '7' + 5}
return [NSString stringWithUTF8String:key]
I'm not sure how to go about this.. does anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,public String(byte[] 字节, Charset 字符集),
String 的构造函数接收 char[] 和 charset 作为参数。
Yes, public String(byte[] bytes, Charset charset),
the constructor of String that receives char[] and charset as parameters.
您使用 public String(byte[] bytes, String charsetName) 构造函数并传递“UTF-8”作为字符集。 这是一个示例:
You use the public String(byte[] bytes, String charsetName) constructor and pass "UTF-8" as the charset. Here is an example: