我有一个SOAPMessage(位于javax.xml.soap.SOAPMessage中)。

但是,打印的唯一方法似乎是soapMessage.writeTo(System.out);。但是它没有任何新行,而SOAPMessage很大,可能很难阅读。

此外,使用System.out.println(soapMessage.toString());只会打印出:

com.sun.xml.internal.messaging.saaj.soap.ver1_1.Message1_1Impl@76c7e77a

我查看了How to pretty print XML from Java?How to print SOAPMessageHow to convert SOAPBody to String,但都没有解决换行和/或格式化SOAPMessage的问题。

最佳答案

如果您不介意向项目中添加其他依赖项,那么jdom将为XML提供格式良好的输出。

jdom.org上的文档非常值得一看。

这有点令人费解,但是您可以将XML写入JDOM Document对象,然后使用XMLOutputter对象以漂亮的格式打印它:

    // write the SoapMessage to a String called xml
    File file= new File(pathToFile);
    file.createNewFile();
    FileOutputStream fileOutputStream = new FileOutputStream(file);
    soapMessage.writeTo(fileOutputStream);
    fileOutputStream.flush();
    fileOutputStream.close();
    SAXBuilder b = new SAXBuilder();
    Document doc = b.build(file);
    XMLOutputter xmlOutputter = new XMLOutputter(Format.getPrettyFormat());
    xmlOutputter.output(doc, System.out);

10-07 23:39