我正在使用 bufferedREader 读取文件,该文件是一个包含大量文本的文本文件
这是我的阅读方式
while(true) //I know the loop is not perfect just ignore it for now, i wanna concentrate on the tracking
{
try
{
br.readLine();
}
catch(IOException e)
{
break;
}
catch (Exception e)
{
break;
}
}
我想跟踪我读过的文件的百分比,这样我就可以在进度条中使用该百分比值,如下所示:
while(true)
{
try
{
br.readLine();
progressBar.setValue(percentageRead);//how do I get percentageRead value dynamically?
}
catch(IOException e)
{
break;
}
catch (Exception e)
{
break;
}
}