Java XML Transform Usage closeSource(final Source source)

Here you can find the source of closeSource(final Source source)

Description

close Source

License

Apache License

Declaration

public static void closeSource(final Source source) 

Method Source Code


//package com.java2s;
/*/*from  w  w w.ja va  2s .  co  m*/
 * Copyright Red Hat, Inc. and/or its affiliates
 * and other contributors as indicated by the @author tags and
 * the COPYRIGHT.txt file distributed with this work.
 *
 * 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.
 */

import java.io.IOException;

import javax.xml.transform.Source;
import javax.xml.transform.stream.StreamSource;

public class Main {
    public static void closeSource(final Source source) {
        if (!(source instanceof StreamSource)) {
            return;
        }

        StreamSource stream = (StreamSource) source;
        try {
            if (stream.getInputStream() != null) {
                stream.getInputStream().close();
            }
        } catch (IOException e) {
        }
        try {
            if (stream.getReader() != null) {
                stream.getReader().close();
            }
        } catch (IOException e) {
        }
    }
}

Related

  1. bytesToXml(final byte[] body)
  2. castResultToSource(StreamResult result)
  3. compareSource(Source src, Source target)
  4. compareStreamSource(StreamSource src1, StreamSource src2)
  5. convert(final Element element)
  6. convertDisplay(Object object)