如何用java解析文本文件?

发布于 2024-11-14 11:34:39 字数 167 浏览 3 评论 0原文

我在以下网址中有一个文本文件。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

避讳 2024-11-21 11:34:39

这是一个java问题,而不是android特定问题。

最好的方法是在文件(或流)上使用 BufferedReader。
然后使用 readLine 获取一行。

然后使用 String.splitString.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 or String.indexOf to parse your data.

笔落惊风雨 2024-11-21 11:34:39

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.

格子衫的從容 2024-11-21 11:34:39

String.split(..) 如果它很简单。如果更复杂,您可以使用 regex

String.split(..) if it is simple. If it is more complex, you could use regex

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文