Java JDOM Document hashCode() 方法



Java JDOM hashCode() 方法是 Document 类的方法,用于获取 XML 文档的哈希码。哈希码是用于单独识别 XML 文档的唯一整数值。此哈希码用于检查 XML 文档的数据完整性和其他安全问题。

语法

以下是 Java JDOM Document hashCode() 方法的语法 −

Document.hashCode();

参数

Java hashCode() 方法不接受任何参数。

返回值

Java hashCode() 方法返回哈希码作为整数值。

示例

以下是使用 Java JDOM Document hashCode() 方法的基本示例 −

import org.jdom2.Document;

public class GetHashCode {
   public static void main(String args[]) {
      try {
    	 //Creating new document
    	 Document doc = new Document();
    	 int hashCode = doc.hashCode();
    	 System.out.println("Hash code of this document: "+hashCode);
      } catch(Exception e) {
    	 e.printStackTrace();
      } 
   }
}

将显示 XML 文档的哈希码。

Hash code of this document: 1599771323
广告