返回

格式化前的xml

发布时间:2022-10-29 06:24:04 274
import org.apache.xml.serialize.OutputFormat;
  import org.apache.xml.serialize.OutputFormat;
  import org.apache.xml.serialize.XMLSerializer;
  import org.w3c.dom.Document;
  import org.xml.sax.InputSource;
  import org.xml.sax.SAXException;
  import javax.xml.parsers.DocumentBuilder;
  import javax.xml.parsers.DocumentBuilderFactory;
  import javax.xml.parsers.ParserConfigurationException;
  import java.io.IOException;
  import java.io.StringReader;
  import java.io.StringWriter;
  import java.io.Writer;
  public class XmlFormatter {
  public String format(String unformattedXml) {
  try {
  final Document document= parseXmlFile(unformattedXml);
  OutputFormat format =new OutputFormat(document);
  format.setLineWidth(65);
  format.setIndenting(true);
  format.setIndent(2);
  Writer out =new StringWriter();
  XMLSerializer serializer =new XMLSerializer(out, format);
  serializer.serialize(document);
  return out.toString();
  } catch (IOException e) {
  throw new RuntimeException(e);
  }
  }
  private Document parseXmlFile(String in) {
  try {
  DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
  DocumentBuilder db = dbf.newDocumentBuilder();
  InputSource is =new InputSource(new StringReader(in));
  return db.parse(is);
  } catch (ParserConfigurationException e) {
  throw new RuntimeException(e);
  } catch (SAXException e) {
  throw new RuntimeException(e);
  } catch (IOException e) {
  throw new RuntimeException(e);
  }
  }
  public static void main(String[] args) throws Exception{

  System.out.println(new XmlFormatter().format(s));
  }
  }
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
精选文章
thumb 中国研究员首次曝光美国国安局顶级后门—“方程式组织”
thumb 俄乌线上战争,网络攻击弥漫着数字硝烟
thumb 从网络安全角度了解俄罗斯入侵乌克兰的相关事件时间线