Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 test.txt 文件。然后,我尝试通过 MessageDigest 获取该文件的 md5 字符串。但是,我的问题不是这样。我的要求是创建一个包含 md5 字符串的 test.txt.md5 文件。
我怎么能在java中做到这一点?
非常感谢你们!
您可以将您的问题分解为两个较小的问题:
第一: 在 Java 中获取文件的 MD5 校验和
第二:
try (PrintStream out = new PrintStream(new FileOutputStream("filename.md5"))) { out.print(text); }
如果你分解你的问题,你更有可能直接找到已经提出的问题/答案