我有一个相当于 Objective-C stringWithUTF8String: 的 Java 吗?

发布于 2024-11-28 12:34:45 字数 181 浏览 0 评论 0原文

我需要将以下内容从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

习惯成性 2024-12-05 12:34:45

是的,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.

吐个泡泡 2024-12-05 12:34:45

您使用 public String(byte[] bytes, String charsetName) 构造函数并传递“UTF-8”作为字符集。 这是一个示例

byte key[] = {'9' + 1, 'U' + 2, '6' + 3, 'S' + 4, '7' + 5};
return new String(key, "UTF-8");

You use the public String(byte[] bytes, String charsetName) constructor and pass "UTF-8" as the charset. Here is an example:

byte key[] = {'9' + 1, 'U' + 2, '6' + 3, 'S' + 4, '7' + 5};
return new String(key, "UTF-8");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文