作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 BufferedInputStream 和 BufferedOutputStream 的上传,现在我想获得此上传的百分比进度。
如何获得这个?
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try
{
URL url = new URL( sb.toString() );
URLConnection urlc = url.openConnection();
bos = new BufferedOutputStream( urlc.getOutputStream() );
bis = new BufferedInputStream( new FileInputStream( source ) );
int i;
int progress = 0;
while ((i = bis.read()) != -1)
{
bos.write( i );
//how to get the progress here?!
}
}
finally
{
if (bis != null)
try
{
bis.close();
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
if (bos != null)
try
{
bos.close();
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
}
最佳答案
没问题。您可以使用 CountingInputStream
和 CountingOutputStream
包装器来实现这些目的。请参阅Apache Commons IO 2.5 library .
关于java - BOS/BIS 取得进展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16286751/
我已经安装了 Iubenda Consent Solution JS SDK,它似乎可以正常工作。一旦用户通过滚动或关闭通知表示同意,横幅就会消失,并且据推测,同意将存储在 Iubenda 系统中。
在我的 View Controller 中,我以编程方式在我的 UIView 中创建了 N 个按钮。每个按钮都需要做一些不同的事情,所以我制作了一个自定义处理程序类,我创建了 N 个实例,每个实例都使
我是一名优秀的程序员,十分优秀!