如何将字符串解析为单独的整数?爪哇

发布于 2024-12-17 16:58:05 字数 357 浏览 0 评论 0原文

我需要从文件加载(int)数据。新行分隔不同的数据,因此了解新行的位置很重要。我可以使用

string=readln(); 

,然后我在该字符串中有整行。然后我可以

string.trim("//s+") 

从字符串中选择单词(数字)。

我可以将它们解析为 int:

int x = parseInt(string.trim("//s+").toString() );

哪个应该有效(理论上),但事实并非如此!有Java.lang.something,但没有编号! 我该怎么做呢?

I need to load (int) data from file. New line separates different data so it's important to know where the new line is. I can use

string=readln(); 

and then I have whole line in that string. Then I can

string.trim("//s+") 

which chooses words(numbers) from string.

I can parse them to int:

int x = parseInt(string.trim("//s+").toString() );

Which should work (in theory) but it doesn't! There is Java.lang.something, but no number!
How can I do it?

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

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

发布评论

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

评论(1

狂之美人 2024-12-24 16:58:05

我喜欢使用一套两个扫描仪。一个用于逐行读取文件,将每个新行分配给一个临时字符串,另一个用于读取该行并收集整数。像这样的东西:

Scanner sc = new Scanner(inputfile);
Scanner scanLine;
String line;
while(scanLine.hasNextLine())
{
line = sc.nextLine(); 
scanLine = new Scanner(line);
firstInt = scanLine.nextInt();
...
}

I like to use a set of two Scanners. One to read in the file line by line, assigning each new line to a temporary String, and another to read the line and gather the ints. Something like this:

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