如何将字符串解析为单独的整数?爪哇
我需要从文件加载(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我喜欢使用一套两个扫描仪。一个用于逐行读取文件,将每个新行分配给一个临时字符串,另一个用于读取该行并收集整数。像这样的东西:
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: