HexaDecimal 字符串到普通字符串的转换

发布于 2024-10-21 02:56:37 字数 104 浏览 0 评论 0原文

在我的一个应用程序中,我已将字符串转换为十六进制值,并将十六进制值存储在文件中。 稍后我将从文件中检索值,因为它是十六进制值,您可以建议我如何将其转换为普通字符串,以便我可以更轻松地构建应用程序

In one of my application i have converted a string to hexadecimal value and i have stored the hexadecimal value in a file.
later i am retrieving the values from the file as it is in hexadecimal value can you suggest me how to make it to a normal string so that i can have the application more easy to built

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无所的.畏惧 2024-10-28 02:56:37

好吧,假设您将每个字符转换为十六进制字符串并写入它,您可以使用 char c = Integer.parseInt(hexCharStr, 16) 恢复每个字符。然后将所有字符放入 char[] 中,并使用 new String(charArr) 构造一个字符串。

well, assuming you converted each char to a hexidecimal string and wrote it, you could recover each char with char c = Integer.parseInt(hexCharStr, 16). then you put all the chars in a char[] and construct a String using new String(charArr).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文