Java Code Examples for javax.xml.transform.stream.StreamSource#getReader()
The following examples show how to use
javax.xml.transform.stream.StreamSource#getReader() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractMarshaller.java From spring4-understanding with Apache License 2.0 | 6 votes |
/** * Template method for handling {@code StreamSource}s. * <p>This implementation delegates to {@code unmarshalInputStream} or {@code unmarshalReader}. * @param streamSource the {@code StreamSource} * @return the object graph * @throws IOException if an I/O exception occurs * @throws XmlMappingException if the given source cannot be mapped to an object */ protected Object unmarshalStreamSource(StreamSource streamSource) throws XmlMappingException, IOException { if (streamSource.getInputStream() != null) { if (isProcessExternalEntities() && isSupportDtd()) { return unmarshalInputStream(streamSource.getInputStream()); } else { InputSource inputSource = new InputSource(streamSource.getInputStream()); inputSource.setEncoding(getDefaultEncoding()); return unmarshalSaxSource(new SAXSource(inputSource)); } } else if (streamSource.getReader() != null) { if (isProcessExternalEntities() && isSupportDtd()) { return unmarshalReader(streamSource.getReader()); } else { return unmarshalSaxSource(new SAXSource(new InputSource(streamSource.getReader()))); } } else { return unmarshalSaxSource(new SAXSource(new InputSource(streamSource.getSystemId()))); } }
Example 2
Source File: XMLInputFactoryImpl.java From hottub with GNU General Public License v2.0 | 6 votes |
XMLInputSource jaxpSourcetoXMLInputSource(Source source){ if(source instanceof StreamSource){ StreamSource stSource = (StreamSource)source; String systemId = stSource.getSystemId(); String publicId = stSource.getPublicId(); InputStream istream = stSource.getInputStream(); Reader reader = stSource.getReader(); if(istream != null){ return new XMLInputSource(publicId, systemId, null, istream, null); } else if(reader != null){ return new XMLInputSource(publicId, systemId,null, reader, null); }else{ return new XMLInputSource(publicId, systemId, null); } } throw new UnsupportedOperationException("Cannot create " + "XMLStreamReader or XMLEventReader from a " + source.getClass().getName()); }
Example 3
Source File: XMLInputFactoryImpl.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
XMLInputSource jaxpSourcetoXMLInputSource(Source source){ if(source instanceof StreamSource){ StreamSource stSource = (StreamSource)source; String systemId = stSource.getSystemId(); String publicId = stSource.getPublicId(); InputStream istream = stSource.getInputStream(); Reader reader = stSource.getReader(); if(istream != null){ return new XMLInputSource(publicId, systemId, null, istream, null); } else if(reader != null){ return new XMLInputSource(publicId, systemId,null, reader, null); }else{ return new XMLInputSource(publicId, systemId, null); } } throw new UnsupportedOperationException("Cannot create " + "XMLStreamReader or XMLEventReader from a " + source.getClass().getName()); }
Example 4
Source File: AbstractMarshaller.java From java-technology-stack with MIT License | 6 votes |
/** * Template method for handling {@code StreamSource}s. * <p>This implementation delegates to {@code unmarshalInputStream} or {@code unmarshalReader}. * @param streamSource the {@code StreamSource} * @return the object graph * @throws IOException if an I/O exception occurs * @throws XmlMappingException if the given source cannot be mapped to an object */ protected Object unmarshalStreamSource(StreamSource streamSource) throws XmlMappingException, IOException { if (streamSource.getInputStream() != null) { if (isProcessExternalEntities() && isSupportDtd()) { return unmarshalInputStream(streamSource.getInputStream()); } else { InputSource inputSource = new InputSource(streamSource.getInputStream()); inputSource.setEncoding(getDefaultEncoding()); return unmarshalSaxSource(new SAXSource(inputSource)); } } else if (streamSource.getReader() != null) { if (isProcessExternalEntities() && isSupportDtd()) { return unmarshalReader(streamSource.getReader()); } else { return unmarshalSaxSource(new SAXSource(new InputSource(streamSource.getReader()))); } } else { return unmarshalSaxSource(new SAXSource(new InputSource(streamSource.getSystemId()))); } }
Example 5
Source File: XMLInputFactoryImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
XMLInputSource jaxpSourcetoXMLInputSource(Source source){ if(source instanceof StreamSource){ StreamSource stSource = (StreamSource)source; String systemId = stSource.getSystemId(); String publicId = stSource.getPublicId(); InputStream istream = stSource.getInputStream(); Reader reader = stSource.getReader(); if(istream != null){ return new XMLInputSource(publicId, systemId, null, istream, null); } else if(reader != null){ return new XMLInputSource(publicId, systemId,null, reader, null); }else{ return new XMLInputSource(publicId, systemId, null, false); } } throw new UnsupportedOperationException("Cannot create " + "XMLStreamReader or XMLEventReader from a " + source.getClass().getName()); }
Example 6
Source File: XMLInputFactoryImpl.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
XMLInputSource jaxpSourcetoXMLInputSource(Source source){ if(source instanceof StreamSource){ StreamSource stSource = (StreamSource)source; String systemId = stSource.getSystemId(); String publicId = stSource.getPublicId(); InputStream istream = stSource.getInputStream(); Reader reader = stSource.getReader(); if(istream != null){ return new XMLInputSource(publicId, systemId, null, istream, null); } else if(reader != null){ return new XMLInputSource(publicId, systemId,null, reader, null); }else{ return new XMLInputSource(publicId, systemId, null); } } throw new UnsupportedOperationException("Cannot create " + "XMLStreamReader or XMLEventReader from a " + source.getClass().getName()); }
Example 7
Source File: XStreamMarshaller.java From spring-analysis-note with MIT License | 5 votes |
@Override protected Object unmarshalStreamSource(StreamSource streamSource) throws XmlMappingException, IOException { if (streamSource.getInputStream() != null) { return unmarshalInputStream(streamSource.getInputStream()); } else if (streamSource.getReader() != null) { return unmarshalReader(streamSource.getReader()); } else { throw new IllegalArgumentException("StreamSource contains neither InputStream nor Reader"); } }
Example 8
Source File: Util.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * Creates a proper {@link XMLInputSource} from a {@link StreamSource}. * * @return always return non-null valid object. */ public static final XMLInputSource toXMLInputSource( StreamSource in ) { if( in.getReader()!=null ) return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId(), in.getReader(), null ); if( in.getInputStream()!=null ) return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId(), in.getInputStream(), null ); return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId() ); }
Example 9
Source File: SourceInput.java From validator with Apache License 2.0 | 5 votes |
private boolean isConsumed() throws IOException { if (isStreamSource()) { final StreamSource ss = (StreamSource) this.source; try { return (ss.getInputStream() != null && ss.getInputStream().available() == 0) || (ss.getReader() != null && !ss.getReader().ready()); } catch (final IOException e) { log.error("Error checking consumed state", e); return true; } } return false; }
Example 10
Source File: XStreamMarshaller.java From java-technology-stack with MIT License | 5 votes |
@Override protected Object unmarshalStreamSource(StreamSource streamSource) throws XmlMappingException, IOException { if (streamSource.getInputStream() != null) { return unmarshalInputStream(streamSource.getInputStream()); } else if (streamSource.getReader() != null) { return unmarshalReader(streamSource.getReader()); } else { throw new IllegalArgumentException("StreamSource contains neither InputStream nor Reader"); } }
Example 11
Source File: Util.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Creates a proper {@link XMLInputSource} from a {@link StreamSource}. * * @return always return non-null valid object. */ public static final XMLInputSource toXMLInputSource( StreamSource in ) { if( in.getReader()!=null ) return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId(), in.getReader(), null ); if( in.getInputStream()!=null ) return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId(), in.getInputStream(), null ); return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId() ); }
Example 12
Source File: Util.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Creates a proper {@link XMLInputSource} from a {@link StreamSource}. * * @return always return non-null valid object. */ public static final XMLInputSource toXMLInputSource( StreamSource in ) { if( in.getReader()!=null ) return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId(), in.getReader(), null ); if( in.getInputStream()!=null ) return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId(), in.getInputStream(), null ); return new XMLInputSource( in.getPublicId(), in.getSystemId(), in.getSystemId(), false ); }
Example 13
Source File: Store.java From sis with Apache License 2.0 | 5 votes |
/** * Returns the input stream or reader set in the given source, or {@code null} if none. */ private static Closeable input(final StreamSource source) { Closeable in = null; if (source != null) { in = source.getInputStream(); if (in == null) { in = source.getReader(); } } return in; }
Example 14
Source File: SourceReaderFactory.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public static XMLStreamReader createSourceReader(Source source, boolean rejectDTDs, String charsetName) { try { if (source instanceof StreamSource) { StreamSource streamSource = (StreamSource) source; InputStream is = streamSource.getInputStream(); if (is != null) { // Wrap input stream in Reader if charset is specified if (charsetName != null) { return XMLStreamReaderFactory.create( source.getSystemId(), new InputStreamReader(is, charsetName), rejectDTDs); } else { return XMLStreamReaderFactory.create( source.getSystemId(), is, rejectDTDs); } } else { Reader reader = streamSource.getReader(); if (reader != null) { return XMLStreamReaderFactory.create( source.getSystemId(), reader, rejectDTDs); } else { return XMLStreamReaderFactory.create( source.getSystemId(), new URL(source.getSystemId()).openStream(), rejectDTDs ); } } } else if (source.getClass() == fastInfosetSourceClass) { return FastInfosetUtil.createFIStreamReader((InputStream) fastInfosetSource_getInputStream.invoke(source)); } else if (source instanceof DOMSource) { DOMStreamReader dsr = new DOMStreamReader(); dsr.setCurrentNode(((DOMSource) source).getNode()); return dsr; } else if (source instanceof SAXSource) { // TODO: need SAX to StAX adapter here -- Use transformer for now Transformer tx = XmlUtil.newTransformer(); DOMResult domResult = new DOMResult(); tx.transform(source, domResult); return createSourceReader( new DOMSource(domResult.getNode()), rejectDTDs); } else { throw new XMLReaderException("sourceReader.invalidSource", source.getClass().getName()); } } catch (Exception e) { throw new XMLReaderException(e); } }
Example 15
Source File: SourceReaderFactory.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public static XMLStreamReader createSourceReader(Source source, boolean rejectDTDs, String charsetName) { try { if (source instanceof StreamSource) { StreamSource streamSource = (StreamSource) source; InputStream is = streamSource.getInputStream(); if (is != null) { // Wrap input stream in Reader if charset is specified if (charsetName != null) { return XMLStreamReaderFactory.create( source.getSystemId(), new InputStreamReader(is, charsetName), rejectDTDs); } else { return XMLStreamReaderFactory.create( source.getSystemId(), is, rejectDTDs); } } else { Reader reader = streamSource.getReader(); if (reader != null) { return XMLStreamReaderFactory.create( source.getSystemId(), reader, rejectDTDs); } else { return XMLStreamReaderFactory.create( source.getSystemId(), new URL(source.getSystemId()).openStream(), rejectDTDs ); } } } else if (source.getClass() == fastInfosetSourceClass) { return FastInfosetUtil.createFIStreamReader((InputStream) fastInfosetSource_getInputStream.invoke(source)); } else if (source instanceof DOMSource) { DOMStreamReader dsr = new DOMStreamReader(); dsr.setCurrentNode(((DOMSource) source).getNode()); return dsr; } else if (source instanceof SAXSource) { // TODO: need SAX to StAX adapter here -- Use transformer for now Transformer tx = XmlUtil.newTransformer(); DOMResult domResult = new DOMResult(); tx.transform(source, domResult); return createSourceReader( new DOMSource(domResult.getNode()), rejectDTDs); } else { throw new XMLReaderException("sourceReader.invalidSource", source.getClass().getName()); } } catch (Exception e) { throw new XMLReaderException(e); } }
Example 16
Source File: EfficientStreamingTransformer.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
private InputStream getInputStreamFromSource(StreamSource s) throws TransformerException { InputStream stream = s.getInputStream(); if (stream != null) return stream; if (s.getReader() != null) return null; String systemId = s.getSystemId(); if (systemId != null) { try { String fileURL = systemId; if (systemId.startsWith("file:///")) { /* systemId is: file:///<drive>:/some/path/file.xml or file:///some/path/file.xml */ String absolutePath = systemId.substring(7); /* /<drive>:/some/path/file.xml or /some/path/file.xml */ boolean hasDriveDesignator = absolutePath.indexOf(":") > 0; if (hasDriveDesignator) { String driveDesignatedPath = absolutePath.substring(1); /* <drive>:/some/path/file.xml */ fileURL = driveDesignatedPath; } else { /* /some/path/file.xml */ fileURL = absolutePath; } } //return new FileInputStream(fileURL); try { return new FileInputStream(new File(new URI(fileURL))); } catch (URISyntaxException ex) { throw new TransformerException(ex); } } catch (IOException e) { throw new TransformerException(e.toString()); } } throw new TransformerException("Unexpected StreamSource object"); }
Example 17
Source File: EfficientStreamingTransformer.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
private InputStream getInputStreamFromSource(StreamSource s) throws TransformerException { InputStream stream = s.getInputStream(); if (stream != null) return stream; if (s.getReader() != null) return null; String systemId = s.getSystemId(); if (systemId != null) { try { String fileURL = systemId; if (systemId.startsWith("file:///")) { /* systemId is: file:///<drive>:/some/path/file.xml or file:///some/path/file.xml */ String absolutePath = systemId.substring(7); /* /<drive>:/some/path/file.xml or /some/path/file.xml */ boolean hasDriveDesignator = absolutePath.indexOf(":") > 0; if (hasDriveDesignator) { String driveDesignatedPath = absolutePath.substring(1); /* <drive>:/some/path/file.xml */ fileURL = driveDesignatedPath; } else { /* /some/path/file.xml */ fileURL = absolutePath; } } //return new FileInputStream(fileURL); try { return new FileInputStream(new File(new URI(fileURL))); } catch (URISyntaxException ex) { throw new TransformerException(ex); } } catch (IOException e) { throw new TransformerException(e.toString()); } } throw new TransformerException("Unexpected StreamSource object"); }
Example 18
Source File: SourceReaderFactory.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public static XMLStreamReader createSourceReader(Source source, boolean rejectDTDs, String charsetName) { try { if (source instanceof StreamSource) { StreamSource streamSource = (StreamSource) source; InputStream is = streamSource.getInputStream(); if (is != null) { // Wrap input stream in Reader if charset is specified if (charsetName != null) { return XMLStreamReaderFactory.create( source.getSystemId(), new InputStreamReader(is, charsetName), rejectDTDs); } else { return XMLStreamReaderFactory.create( source.getSystemId(), is, rejectDTDs); } } else { Reader reader = streamSource.getReader(); if (reader != null) { return XMLStreamReaderFactory.create( source.getSystemId(), reader, rejectDTDs); } else { return XMLStreamReaderFactory.create( source.getSystemId(), new URL(source.getSystemId()).openStream(), rejectDTDs ); } } } else if (source.getClass() == fastInfosetSourceClass) { return FastInfosetUtil.createFIStreamReader((InputStream) fastInfosetSource_getInputStream.invoke(source)); } else if (source instanceof DOMSource) { DOMStreamReader dsr = new DOMStreamReader(); dsr.setCurrentNode(((DOMSource) source).getNode()); return dsr; } else if (source instanceof SAXSource) { // TODO: need SAX to StAX adapter here -- Use transformer for now Transformer tx = XmlUtil.newTransformer(); DOMResult domResult = new DOMResult(); tx.transform(source, domResult); return createSourceReader( new DOMSource(domResult.getNode()), rejectDTDs); } else { throw new XMLReaderException("sourceReader.invalidSource", source.getClass().getName()); } } catch (Exception e) { throw new XMLReaderException(e); } }
Example 19
Source File: EfficientStreamingTransformer.java From hottub with GNU General Public License v2.0 | 4 votes |
private InputStream getInputStreamFromSource(StreamSource s) throws TransformerException { InputStream stream = s.getInputStream(); if (stream != null) return stream; if (s.getReader() != null) return null; String systemId = s.getSystemId(); if (systemId != null) { try { String fileURL = systemId; if (systemId.startsWith("file:///")) { /* systemId is: file:///<drive>:/some/path/file.xml or file:///some/path/file.xml */ String absolutePath = systemId.substring(7); /* /<drive>:/some/path/file.xml or /some/path/file.xml */ boolean hasDriveDesignator = absolutePath.indexOf(":") > 0; if (hasDriveDesignator) { String driveDesignatedPath = absolutePath.substring(1); /* <drive>:/some/path/file.xml */ fileURL = driveDesignatedPath; } else { /* /some/path/file.xml */ fileURL = absolutePath; } } //return new FileInputStream(fileURL); try { return new FileInputStream(new File(new URI(fileURL))); } catch (URISyntaxException ex) { throw new TransformerException(ex); } } catch (IOException e) { throw new TransformerException(e.toString()); } } throw new TransformerException("Unexpected StreamSource object"); }
Example 20
Source File: EfficientStreamingTransformer.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
private InputStream getInputStreamFromSource(StreamSource s) throws TransformerException { InputStream stream = s.getInputStream(); if (stream != null) return stream; if (s.getReader() != null) return null; String systemId = s.getSystemId(); if (systemId != null) { try { String fileURL = systemId; if (systemId.startsWith("file:///")) { /* systemId is: file:///<drive>:/some/path/file.xml or file:///some/path/file.xml */ String absolutePath = systemId.substring(7); /* /<drive>:/some/path/file.xml or /some/path/file.xml */ boolean hasDriveDesignator = absolutePath.indexOf(":") > 0; if (hasDriveDesignator) { String driveDesignatedPath = absolutePath.substring(1); /* <drive>:/some/path/file.xml */ fileURL = driveDesignatedPath; } else { /* /some/path/file.xml */ fileURL = absolutePath; } } //return new FileInputStream(fileURL); try { return new FileInputStream(new File(new URI(fileURL))); } catch (URISyntaxException ex) { throw new TransformerException(ex); } } catch (IOException e) { throw new TransformerException(e.toString()); } } throw new TransformerException("Unexpected StreamSource object"); }