how2j.cn

步骤 1 : ProgressInputStream   
步骤 2 : 用法   

步骤 1 :

ProgressInputStream

edit
package util; import java.io.IOException; import java.io.InputStream; public class ProgressInputStream extends InputStream{ long sum = 0; long per = 0; long newPer = 0; public int read() throws IOException { return is.read(); } public int hashCode() { return is.hashCode(); } public int read(byte[] b) throws IOException { int result = super.read(b); sum += result; newPer = sum * 100 / total; if (newPer > per) { per = newPer; monitor.progressChange((int)per); } return result; } public boolean equals(Object obj) { return is.equals(obj); } public int read(byte[] b, int off, int len) throws IOException { return is.read(b, off, len); } public long skip(long n) throws IOException { return is.skip(n); } public String toString() { return is.toString(); } public int available() throws IOException { return is.available(); } public void close() throws IOException { is.close(); } public void mark(int readlimit) { is.mark(readlimit); } public void reset() throws IOException { is.reset(); } public boolean markSupported() { return is.markSupported(); } InputStream is; int total; ProgressMonitor monitor; public ProgressInputStream(InputStream is,ProgressMonitor monitor,int total){ this.is = is; this.monitor = monitor; this.total = total; } }
package util; public interface ProgressMonitor { public void progressChange(int percentage); }
ProgressMonitor monitor = new ProgressMonitor() { @Override public void progressChange(int percentage) { System.out.println(percentage); } }; ProgressInputStream pis = new ProgressInputStream(is,monitor,total);
	ProgressMonitor monitor = new ProgressMonitor() {
			
			@Override
			public void progressChange(int percentage) {
				System.out.println(percentage);
				
			}
		};
	
		ProgressInputStream pis = new ProgressInputStream(is,monitor,total);
		


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 J2SE 应用-工作随记-进度输入流 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图