我使用一個AsynkTast下載一套CSV lines,而且想要記錄一共讀入了多少字節。
while ((string = bufferedReader.readLine()) != null)
{
bytesRead += ?;
}
如何記錄總字節數的行數?能否用OutputStream讀出?
在你的程序中添加:
while ((string = br.readLine()) != null)
{
bytesRead += (string.getBytes().length);
}