本文整理了Java中java.io.FileInputStream.reset()
方法的一些代码示例,展示了FileInputStream.reset()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileInputStream.reset()
方法的具体详情如下:
包路径:java.io.FileInputStream
类名称:FileInputStream
方法名:reset
暂无
代码示例来源:origin: org.seasar.robot/s2-robot
@Override
public synchronized void reset() throws IOException {
fileInputStream.reset();
}
代码示例来源:origin: org.support-project/common
@Override
public synchronized void reset() throws IOException {
inputStream.reset();
}
代码示例来源:origin: edu.toronto.cs.savant/savant-core
@Override
public void reset() throws IOException {
fis.reset();
}
代码示例来源:origin: org.codelibs.robot/s2-robot
@Override
public synchronized void reset() throws IOException {
fileInputStream.reset();
}
代码示例来源:origin: org.codelibs.fess/fess-crawler
@Override
public synchronized void reset() throws IOException {
fileInputStream.reset();
}
代码示例来源:origin: org.codelibs.robot/s2robot
@Override
public synchronized void reset() throws IOException {
fileInputStream.reset();
}
代码示例来源:origin: pcingola/SnpEff
@Override
public void reset() throws IOException {
fis.reset();
}
代码示例来源:origin: com.aoindustries/aocode-public
@Override
synchronized public void reset() throws IOException {
if(in==null) {
if(nextFile>=files.length) {
super.reset();
return;
}
in=new FileInputStream(files[nextFile++]);
}
in.reset();
}
代码示例来源:origin: org.apache.jackrabbit/jackrabbit-jcr-commons
/**
* {@inheritDoc}
*/
public synchronized void reset() throws IOException {
open();
in.reset();
}
代码示例来源:origin: org.apache.tomee/openejb-loader
@Override
public synchronized void reset() throws IOException {
stream().reset();
}
代码示例来源:origin: org.apache.sling/org.apache.sling.testing.sling-mock-oak
/**
* {@inheritDoc}
*/
public synchronized void reset() throws IOException {
open();
in.reset();
}
代码示例来源:origin: apache/jackrabbit
/**
* {@inheritDoc}
*/
public synchronized void reset() throws IOException {
open();
in.reset();
}
代码示例来源:origin: org.apache.jackrabbit/com.springsource.org.apache.jackrabbit.commons
/**
* {@inheritDoc}
*/
public synchronized void reset() throws IOException {
open();
in.reset();
}
内容来源于网络,如有侵权,请联系作者删除!