Java XML Document to File storeXML(Document doc, File file)

Here you can find the source of storeXML(Document doc, File file)

Description

store XML

License

Apache License

Declaration

public static boolean storeXML(Document doc, File file) 

Method Source Code

//package com.java2s;
/**************************************************************
 * //w  ww.  j  av  a 2  s  . co m
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 * 
 *************************************************************/

import java.io.File;

import java.io.FileOutputStream;

import java.io.InputStream;

import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;

import org.w3c.dom.Document;

public class Main {
    public static boolean storeXML(Document doc, File file) {
        try {
            file.getParentFile().mkdirs();
            String s = file.getAbsolutePath();
            TransformerFactory.newInstance().newTransformer().transform(new DOMSource(doc),
                    new StreamResult(new FileOutputStream(s)));
            return true;
        } catch (Exception e) {
            return false;
        }
    }

    public static boolean storeXML(Document doc, File file, File xls) {
        try {
            file.getParentFile().mkdirs();
            String s = file.getAbsolutePath();
            TransformerFactory.newInstance().newTransformer(new StreamSource(xls)).transform(new DOMSource(doc),
                    new StreamResult(new FileOutputStream(s)));
            return true;
        } catch (Exception e) {
            return false;
        }
    }

    public static boolean storeXML(Document doc, File file, InputStream xls) {
        try {
            file.getParentFile().mkdirs();
            String s = file.getAbsolutePath();
            TransformerFactory.newInstance().newTransformer(new StreamSource(xls)).transform(new DOMSource(doc),
                    new StreamResult(new FileOutputStream(s)));
            return true;
        } catch (Exception e) {
            return false;
        }
    }
}

Related

  1. dumpDocument(Document doc, String outName)
  2. storeXml(final File xmlFile, final Document document)
  3. write(Document doc, File out)
  4. write(final Document doc, final File file)
  5. writeDataToFile(File file, Document doc)