如何从Java文件中读取int和string(两列)?

发布于 2025-01-11 03:28:44 字数 136 浏览 0 评论 0原文

我有一个包含两列的文件:

10 Mike
7 Jhon
21 Charles

并且我想读取这些值。有一个简单的方法可以做到这一点吗?我知道在 C++ 中很简单,但在 Java 中似乎不那么简单。

I have a file with two columns:

10 Mike
7 Jhon
21 Charles

and I wanted to read these values. Is there an easy wy to do this? I know in C++ it's simple, but it seems it's not in Java.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

月亮是我掰弯的 2025-01-18 03:28:44

您可以通过多种方式做到这一点。如果您使用Java 8+,您可以这样做:

Files.readAllLines(...)
    .forEach(line -> {
       String[] splitted = line.split("\\s+");
       //now you can access your values splitted[0] and splitted[1]
    });

您可以随后将字符串值转换为您想要的类型。

您还可以将库用于更复杂的场景。一些常见的有:

  1. Apache Commons CSV https://www.baeldung.com/apache-commons- csv
  2. 杰克逊 CSV https://dirask.com/posts/Java-how-to-read-CSV-file-into-java-object-using-Jackson-CSV-library-complex-example-with-BigDecimal-and-enum -x1Rm7j

There are multiple ways you can do it. If you use Java 8+, you can do:

Files.readAllLines(...)
    .forEach(line -> {
       String[] splitted = line.split("\\s+");
       //now you can access your values splitted[0] and splitted[1]
    });

You can convert the string values to the type you want afterwards.

You can also use libraries for more complex scenarios. Some common ones are:

  1. Apache Commons CSV https://www.baeldung.com/apache-commons-csv
  2. Jackson CSV https://dirask.com/posts/Java-how-to-read-CSV-file-into-java-object-using-Jackson-CSV-library-complex-example-with-BigDecimal-and-enum-x1Rm7j
傻比既视感 2025-01-18 03:28:44

使用 Scanner 对象从文本文件中输入数据

实例化该对象:

Scanner scan = new Scanner(new File("example.txt"));

在文件中调用下一个整数的方法

int n = scan.nextInt();

调用下一个字符串的方法

String s = scan.next();

Use a Scanner object to Input data from a text file

Instantiate the object:

Scanner scan = new Scanner(new File("example.txt"));

Call Method for Next Integer in the File

int n = scan.nextInt();

Call Method for next String

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