如果我理解正确,该方法是创建一个装饰器输入流并覆盖一些方法,这些方法会像读取方法或跳过方法一样吟唱输入流状态。然后使用观察者模式通知 moinotr 读取百分比。请参阅以下代码:
public static class ProcessInputStream extends InputStream{
private InputStream in;
private int length,sumRead;
private java.util.List<Listener> listeners;
private double percent;
public ProcessInputStream(InputStream inputStream,int length) throws IOException{
this.in=inputStream;
listeners=new ArrayList<>();
sumRead=0;
this.length=length;
}
@Override
public int read(byte[] b) throws IOException {
int readCount = in.read(b);
evaluatePercent(readCount);
return readCount;
}
@Override
public int read(byte[] b, int off, int len) throws IOException {
int readCount = in.read(b, off, len);
evaluatePercent(readCount);
return readCount;
}
@Override
public long skip(long n) throws IOException {
long skip = in.skip(n);
evaluatePercent(skip);
return skip;
}
@Override
public int read() throws IOException {
int read = in.read();
if(read!=-1){
evaluatePercent(1);
}
return read;
}
public ProcessInputStream addListener(Listener listener){
this.listeners.add(listener);
return this;
}
private void evaluatePercent(long readCount){
if(readCount!=-1){
sumRead+=readCount;
percent=sumRead*1.0/length;
}
notifyListener();
}
private void notifyListener(){
for (Listener listener : listeners) {
listener.process(percent);
}
}
}
Listener 类是一个回调,当有人更改输入流的索引(如读取字节或跳过字节)时将调用该回调。
public interface Listener{
void process(double percent);
}
测试用例代码:
UserInfo userInfo=new UserInfo();
userInfo.setName("zyr");
userInfo.setPassword("123");
userInfo.setTestString(new ArrayList<>());
System.out.println(userInfo);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos=new ObjectOutputStream(bos);
oos.writeObject(userInfo);
byte[] objectBytes = bos.toByteArray();
oos.close();
bos.close();
ProcessInputStream processInputStream = new ProcessInputStream(new ByteArrayInputStream(objectBytes),objectBytes.length);
processInputStream.addListener(percent -> System.out.println(percent));
ObjectInputStream ois=new ObjectInputStream(processInputStream);
UserInfo target = (UserInfo) ois.readObject();
System.out.println(target);
在上面的代码中,我只是打印读取字节的百分比,根据您的要求,您应该更改进程栏的位置。
这是输出的一部分;
UserInfo{id=0, name='zyr', password='123', testString=[]}
0.008658008658008658
0.017316017316017316
0.021645021645021644
......
......
0.9523809523809523
0.9696969696969697
0.974025974025974
0.9783549783549783
0.9956709956709957
1.0
UserInfo{id=0, name='zyr', password='123', testString=[]}