如何在java中创建网页的哈希值?

发布于 2024-07-29 20:10:34 字数 69 浏览 9 评论 0原文

我需要在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 技术交流群。

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

发布评论

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

评论(2

温馨耳语 2024-08-05 20:10:34

< 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 to GET the page.

如果没结果 2024-08-05 20:10:34

Raffaele Di Fazio:

您可以使用此函数从字符串生成 MD5 作为 HashValue; 例如,

   String hashValue = MD5Hash("URL or HTML".getBytes());


  /**
     * MD5 implementation as Hash value 
     * 
     * @param a_sDataBytes - a original data as byte[] from String
     * @return String as Hex value 
     * @throws NoSuchAlgorithmException 
     */

    public static String MD5Hash(byte[] dataBytes) throws NoSuchAlgorithmException {
        if( dataBytes == null) return "";

        MessageDigest md = MessageDigest.getInstance("MD5");
        md.update(dataBytes);
        byte[] digest = md.digest();

        // convert it to the hexadecimal 
        BigInteger bi = new BigInteger(digest);
        String s = bi.toString(16);
        if( s.length() %2 != 0)
        {
            s = "0"+s;
        }
        return s;
    }

我希望它有帮助。 请让我们知道这个问题的方向是否正确。

老虎。

Raffaele Di Fazio:

you can use this function to generate MD5 as HashValue from the String; for example,

   String hashValue = MD5Hash("URL or HTML".getBytes());


  /**
     * MD5 implementation as Hash value 
     * 
     * @param a_sDataBytes - a original data as byte[] from String
     * @return String as Hex value 
     * @throws NoSuchAlgorithmException 
     */

    public static String MD5Hash(byte[] dataBytes) throws NoSuchAlgorithmException {
        if( dataBytes == null) return "";

        MessageDigest md = MessageDigest.getInstance("MD5");
        md.update(dataBytes);
        byte[] digest = md.digest();

        // convert it to the hexadecimal 
        BigInteger bi = new BigInteger(digest);
        String s = bi.toString(16);
        if( s.length() %2 != 0)
        {
            s = "0"+s;
        }
        return s;
    }

I hope it helps. Please, let us know if it is right direction for that question.

Tiger.

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