HexaDecimal 字符串到普通字符串的转换
在我的一个应用程序中,我已将字符串转换为十六进制值,并将十六进制值存储在文件中。 稍后我将从文件中检索值,因为它是十六进制值,您可以建议我如何将其转换为普通字符串,以便我可以更轻松地构建应用程序
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,假设您将每个字符转换为十六进制字符串并写入它,您可以使用 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 usingnew String(charArr)
.