4

我正在使用AsynkTast下载一组 CSV 行,并希望跟踪总共读取了多少字节。

while ((string = bufferedReader.readLine()) != null)
{
    bytesRead += ?;
}

我将如何访问行总字节数?

如果这个问题是重复的,我很抱歉,但我似乎只能找到答案与OutputStream.

4

1 回答 1

1

尝试:

while ((string = br.readLine()) != null)
{
    bytesRead += (string.getBytes().length);
}
于 2012-10-17T10:58:40.957 回答