本文整理了Java中com.jcraft.jzlib.ZInputStream.read()
方法的一些代码示例,展示了ZInputStream.read()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZInputStream.read()
方法的具体详情如下:
包路径:com.jcraft.jzlib.ZInputStream
类名称:ZInputStream
方法名:read
暂无
代码示例来源:origin: com.jcraft/jzlib
public long skip(long n) throws IOException {
int len=512;
if(n<len)
len=(int)n;
byte[] tmp=new byte[len];
return((long)read(tmp));
}
代码示例来源:origin: google/sagetv
public long skip(long n) throws IOException {
int len=512;
if(n<len)
len=(int)n;
byte[] tmp=new byte[len];
return((long)read(tmp));
}
代码示例来源:origin: jzlib/jzlib
public long skip(long n) throws IOException {
int len=512;
if(n<len)
len=(int)n;
byte[] tmp=new byte[len];
return((long)read(tmp));
}
代码示例来源:origin: google/sagetv
public int read() throws IOException {
if(read(buf1, 0, 1)==-1)
return(-1);
return(buf1[0]&0xFF);
}
代码示例来源:origin: ymnk/jzlib
public long skip(long n) throws IOException {
int len=512;
if(n<len)
len=(int)n;
byte[] tmp=new byte[len];
return((long)read(tmp));
}
代码示例来源:origin: com.jcraft.jzlib/com.springsource.com.jcraft.jzlib
public int read() throws IOException {
if(read(buf1, 0, 1)==-1)
return(-1);
return(buf1[0]&0xFF);
}
代码示例来源:origin: jzlib/jzlib
public int read() throws IOException {
if(read(buf1, 0, 1)==-1)
return(-1);
return(buf1[0]&0xFF);
}
代码示例来源:origin: com.jcraft/jzlib
public int read() throws IOException {
if(read(buf1, 0, 1)==-1) return -1;
return(buf1[0]&0xFF);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jzlib
public long skip(long n) throws IOException {
int len=512;
if(n<len)
len=(int)n;
byte[] tmp=new byte[len];
return((long)read(tmp));
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jzlib
public int read() throws IOException {
if(read(buf1, 0, 1)==-1) return -1;
return(buf1[0]&0xFF);
}
代码示例来源:origin: ymnk/jzlib
public int read() throws IOException {
if(read(buf1, 0, 1)==-1) return -1;
return(buf1[0]&0xFF);
}
代码示例来源:origin: com.perforce/p4java
@Override
public int read(byte[] bytes, int offset, int len) throws IOException {
if (bytes == null) {
throw new NullPointerError(
"null byte array passed to RpcGZIPInputStream.read()");
}
if ((len <= 0) || (offset < 0) || (offset >= bytes.length) || (len > (bytes.length - offset))) {
throw new P4JavaError(
"bad length or offset in RpcGZIPInputStream.read()");
}
return this.jzInStream.read(bytes, offset, len);
}
代码示例来源:origin: groboclown/p4ic4idea
@Override
public int read(byte[] bytes, int offset, int len) throws IOException {
if (bytes == null) {
throw new NullPointerError(
"null byte array passed to RpcGZIPInputStream.read()");
}
if ((len <= 0) || (offset < 0) || (offset >= bytes.length) || (len > (bytes.length - offset))) {
throw new P4JavaError(
"bad length or offset in RpcGZIPInputStream.read()");
}
return this.jzInStream.read(bytes, offset, len);
}
代码示例来源:origin: aurorafeint/jruby-memcached
int nRead;
byte[] data = new byte[1024];
while ((nRead = zin.read(data, 0, data.length)) != -1) {
buffer.write(data, 0, nRead);
内容来源于网络,如有侵权,请联系作者删除!