Java XML Format prettyFormatXml(final InputStream xml, final OutputStream os, final int indent)

Here you can find the source of prettyFormatXml(final InputStream xml, final OutputStream os, final int indent)

Description

pretty Format Xml

License

Apache License

Declaration

public static void prettyFormatXml(final InputStream xml, final OutputStream os, final int indent) 

Method Source Code


//package com.java2s;
/*/*from  w  w  w . j a va  2 s.  c  o  m*/
 * #%L
 * AZAPTREE-SERVICES-COMMONS
 * %%
 * Copyright (C) 2012 - 2013 AZAPTREE.COM
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;

public class Main {
    public static void prettyFormatXml(final InputStream xml, final OutputStream os, final int indent) {
        try {
            final Source xmlInput = new StreamSource(xml);
            final StreamResult xmlOutput = new StreamResult(os);
            final TransformerFactory transformerFactory = TransformerFactory.newInstance();
            transformerFactory.setAttribute("indent-number", indent);
            final Transformer transformer = transformerFactory.newTransformer();
            transformer.setOutputProperty(OutputKeys.INDENT, "yes");
            transformer.transform(xmlInput, xmlOutput);
        } catch (final Exception e) {
            throw new RuntimeException(e);
        }
    }

    public static String prettyFormatXml(final String xml, final int indent) {
        final ByteArrayOutputStream bos = new ByteArrayOutputStream((int) (xml.length() * 1.5));
        try {
            prettyFormatXml(new ByteArrayInputStream(xml.getBytes("UTF-8")), bos, indent);
            return bos.toString();
        } catch (final UnsupportedEncodingException e) {
            throw new IllegalStateException(e);
        }
    }
}

Related

  1. prettyFormat(String input)
  2. prettyFormat(String input)
  3. prettyFormat(String input)
  4. prettyFormat(String input, int indent)
  5. prettyFormat(String strInput, int nIndent)
  6. prettyFormatXmlText(String text)
  7. prettyPrint(final Source source)
  8. prettyPrint(String header, String xml)
  9. prettyPrintToString(String xml)