Document doc = DocumentHelper.parseText(HttpResponseString);public void writeToFile(org.dom4j.Document doc,String fileName){
   String HttpResponseString=“justfortest”
         
           Writer writer = new FileWriter(fileName);
    OutputFormat format = OutputFormat.createPrettyPrint();
    format.setEncoding("UTF-8");
    XMLWriter xmlWriter = new XMLWriter(writer, format);
    xmlWriter.write(doc);
    xmlWriter.close();
}该如何查询org.dom4j.Document 型对象 doc 的值呢?