Java Code Examples for javax.xml.transform.stream.StreamSource#getPublicId()
The following examples show how to use
javax.xml.transform.stream.StreamSource#getPublicId() .
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: XMLInputFactoryImpl.java From openjdk-8 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 2
Source File: XMLInputFactoryImpl.java From TencentKona-8 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 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 4
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 5
Source File: XMLInputFactoryImpl.java From openjdk-jdk8u 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 6
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 7
Source File: XMLInputFactoryImpl.java From openjdk-jdk8u-backup 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 8
Source File: XMLInputFactoryImpl.java From Bytecoder with Apache License 2.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 9
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 10
Source File: Util.java From Bytecoder 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(), false ); }
Example 11
Source File: Util.java From openjdk-8 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-8-source 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 13
Source File: Util.java From hottub 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 14
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 15
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 16
Source File: Util.java From openjdk-jdk8u-backup 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 17
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 18
Source File: Util.java From JDKSourceCode1.8 with MIT License | 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 19
Source File: Util.java From jdk8u60 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 20
Source File: DefaultInputResolver.java From woodstox with Apache License 2.0 | 5 votes |
@SuppressWarnings("resource") private static WstxInputSource sourceFromSS(WstxInputSource parent, ReaderConfig cfg, String refName, int xmlVersion, StreamSource ssrc) throws IOException, XMLStreamException { InputBootstrapper bs; Reader r = ssrc.getReader(); String pubId = ssrc.getPublicId(); String sysId0 = ssrc.getSystemId(); URL ctxt = (parent == null) ? null : parent.getSource(); URL url = (sysId0 == null || sysId0.length() == 0) ? null : URLUtil.urlFromSystemId(sysId0, ctxt); final SystemId systemId = SystemId.construct(sysId0, (url == null) ? ctxt : url); if (r == null) { InputStream in = ssrc.getInputStream(); if (in == null) { // Need to try just resolving the system id then if (url == null) { throw new IllegalArgumentException("Can not create Stax reader for a StreamSource -- neither reader, input stream nor system id was set."); } in = URLUtil.inputStreamFromURL(url); } bs = StreamBootstrapper.getInstance(pubId, systemId, in); } else { bs = ReaderBootstrapper.getInstance(pubId, systemId, r, null); } Reader r2 = bs.bootstrapInput(cfg, false, xmlVersion); return InputSourceFactory.constructEntitySource (cfg, parent, refName, bs, pubId, systemId, xmlVersion, r2); }