如何对密文进行编码

发布于 2024-08-13 00:23:37 字数 275 浏览 2 评论 0原文

文件 abc.txt 有几行密文。我想在放入字符串 srr 之前将密文行编码为十六进制编码或 base64 。我有什么办法可以做到吗?

bufferedReader = new BufferedReader(new FileReader("abc.txt"));

                             String srr = null;

                             srr = bufferedReader.readLine()

the file abc.txt has several lines of ciphertext. i want to encode the line of ciphertext into hex encode or base64 before putting in string srr . is there any way i can do it ?

bufferedReader = new BufferedReader(new FileReader("abc.txt"));

                             String srr = null;

                             srr = bufferedReader.readLine()

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

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

发布评论

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

评论(2

堇色安年 2024-08-20 00:23:37

abc.txt 中存储了什么样的密文?如果它是二进制的,则不应使用 FileReader 来读取它,因为 FileReader 使用的某些字符编码可能会更改您的输入字节。请改用 FileInputStream

What kind of cipertext is stored in abc.txt? If it's binary, you shouldn't use a FileReader to read it, because FileReader is using some character encoding that could change your input bytes. Use a FileInputStream instead.

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