com.sun.xml.internal.messaging.saaj.util.ByteInputStream Java Examples
The following examples show how to use
com.sun.xml.internal.messaging.saaj.util.ByteInputStream.
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: IOUtil.java From gameserver with Apache License 2.0 | 6 votes |
public static String uncompressString(byte[] bytes) { try { ByteInputStream bis = new ByteInputStream(bytes, bytes.length); ZipInputStream zis = new ZipInputStream(bis); ZipEntry entry = zis.getNextEntry(); int byteSize = 5000, len = 0; byte[] contentBytes = new byte[byteSize]; ByteArrayOutputStream bufStream = new ByteArrayOutputStream(); if ( entry != null ) { while ( (len = zis.read(contentBytes)) != -1 ) { bufStream.write(contentBytes, 0, len); } String content = new String(bufStream.toByteArray(), "utf8"); return content; } } catch (IOException e) { logger.warn("Failed to unzip string.", e); } return null; }
Example #2
Source File: IOUtil.java From gameserver with Apache License 2.0 | 6 votes |
public static String uncompressStringZlib(byte[] bytes) { try { ByteInputStream bis = new ByteInputStream(bytes, bytes.length); InflaterInputStream zis = new InflaterInputStream(bis); int byteSize = 5000, len = 0; byte[] contentBytes = new byte[byteSize]; ByteArrayOutputStream bufStream = new ByteArrayOutputStream(); while ( (len = zis.read(contentBytes)) != -1 ) { bufStream.write(contentBytes, 0, len); } String content = new String(bufStream.toByteArray(), "utf8"); return content; } catch (IOException e) { logger.warn("Failed to unzip string.", e); } return null; }
Example #3
Source File: SOAPPartImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public InputStream getContentAsStream() throws IOException { if (source != null) { InputStream is = null; // Allow message to be transcode if so requested if (source instanceof StreamSource && !isFastInfoset()) { is = ((StreamSource) source).getInputStream(); } else if (FastInfosetReflection.isFastInfosetSource(source) && isFastInfoset()) { try { // InputStream is = source.getInputStream() is = FastInfosetReflection.FastInfosetSource_getInputStream(source); } catch (Exception e) { throw new IOException(e.toString()); } } if (is != null) { if (lazyContentLength) { return is; } if (!(is instanceof ByteInputStream)) { log.severe("SAAJ0546.soap.stream.incorrect.type"); throw new IOException("Internal error: stream not of the right type"); } return (ByteInputStream) is; } // need to do something here for reader... // for now we'll see if we can fallback... } ByteOutputStream b = new ByteOutputStream(); Envelope env = null; try { env = (Envelope) getEnvelope(); env.output(b, isFastInfoset()); } catch (SOAPException soapException) { log.severe("SAAJ0547.soap.cannot.externalize"); throw new SOAPIOException( "SOAP exception while trying to externalize: ", soapException); } return b.newInputStream(); }