我目前需要读取大量以这种方式组织的数据行:
> *Name *IndexNumber *LocationA *LocationB *LocationC
>
>
> Barrel 4315124 2 3 43 >
> car 414124 2 4 41 |
> Red box 4315124 1 2 77 |--> actual file.
> Glass cup 4515124 4 7 10 |
> Iron cup 4515124 4 7 9 >
>
> ...
> --and so on---
在 Asynctask 中读取它的最佳方式是什么?谢谢 :) 我知道我需要使用 I/O 流,但我也知道有很多方法可以读取数据,所以我的问题是最好使用什么以及如何使用。:)