我正在使用AsynkTast
下载一组CSV行,并希望跟踪总共读取的字节数。
while ((string = bufferedReader.readLine()) != null)
{
bytesRead += ?;
}
我如何访问行总字节数?
如果这个问题重复,我很抱歉,但我似乎只能找到答案与OutputStream
相关的问题。
答案 0 :(得分:1)
尝试:
while ((string = br.readLine()) != null)
{
bytesRead += (string.getBytes().length);
}