如何在java中创建网页的哈希值?
我需要在java中使用SHA1或MD5创建网页的html(从其URL)的哈希值,但我不知道该怎么做......你能帮助我吗?
I need to create the hash of a the html of a webpage (from its URL) using SHA1 or MD5 in java, but I don't know how to do it... can you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
< code>DigestUtils.sha(String) 应该为网页的 URI 或 HTML 完成这项工作,尽管您需要从 URI 中获取页面的 HTML(如果它是网页的一部分)问题。 如果是这样,您可能需要考虑使用 Commons HttpClient 到
获取
页面。DigestUtils.sha(String)
should do the job for the URI or the HTML of the web page, though it's on you to get the HTML of the page from its URI if that's part of the problem. If so, you may want to look into using Commons HttpClient toGET
the page.Raffaele Di Fazio:
您可以使用此函数从字符串生成 MD5 作为 HashValue; 例如,
我希望它有帮助。 请让我们知道这个问题的方向是否正确。
老虎。
Raffaele Di Fazio:
you can use this function to generate MD5 as HashValue from the String; for example,
I hope it helps. Please, let us know if it is right direction for that question.
Tiger.