如何用java解析文本文件?
我在以下网址中有一个文本文件。
http://hosted.stats.com/ifb2009/data.asp?file=en/chlg_standings.txt
我想解析这个文本文件并将数据显示为组、团队等。任何人都可以让我知道如何解析文本文件。
I have a text file in the following url.
http://hosted.stats.com/ifb2009/data.asp?file=en/chlg_standings.txt
I want to parse this text file and display the data as groups, teams etc. Can anyone please let me know how to parse text file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个java问题,而不是android特定问题。
最好的方法是在文件(或流)上使用 BufferedReader。
然后使用
readLine
获取一行。然后使用
String.split
或String.indexOf
解析您的数据。It's a java question, not an android specific question.
The best is to use a
BufferedReader
on your file (or stream).Then use
readLine
to get one line.Then use
String.split
orString.indexOf
to parse your data.也许最好的办法是使用 扫描仪< /a> 这样您就可以轻松指定使用的分隔符并以正确的形式读取数据 (readXXX())。此外,您还可以使用相同的逻辑,无论文件来自何处,只需将构造函数中的 Stream 替换为另一个即可。
Probably the best thing to do is use a Scanner that way you can easily specify your used delimiters and read data in its correct form (readXXX()). Also you can use the same logic independent of where the file is from by replacing the Stream in the constructor with another.
String.split(..)
如果它很简单。如果更复杂,您可以使用 regexString.split(..)
if it is simple. If it is more complex, you could use regex