我是java的新手,我想请你帮忙。我有一些数据存储在txt文件中,每行包含三个整数,由空格分隔。我想从文件中读取数据,然后将这些数据放入数组中进行进一步处理,如果满足某些条件(在我的情况下 - 第三个int大于50)。我读了一些关于如何读取文件中的行数或文件本身的问题,但我似乎无法将它们组合在一起以使其工作。最新版本的代码如下所示:
public class readfile {
private Scanner x;
public void openFile(){
try{
x = new Scanner(new File("file.txt"));
}
catch (Exception e){
System.out.println("could not find file");
}
}
public void readFile() throws IOException{
LineNumberReader lnr = new LineNumberReader(new FileReader(new File("file.txt")));
int i = lnr.getLineNumber();
int[] table1 = new int[i];
int[] table2 = new int[i];
while(x.hasNextInt()){
int a = x.nextInt();
int b = x.nextInt();
int c = x.nextInt();
for (int j=0; j< table1.length; j++)
{
if(c > 50)
{
table1[j]=a;
table2[j]=b;
}
}
}System.out.printf(" %d %d", table1, table2);
}
public void closeFile(){
x.close();
}
}
main位于另一个文件中。
public static void main(String[] args) {
readfile r = new readfile();
r.openFile();
try {
r.readFile();
}
catch (Exception IOException) {} //had to use this block or it wouldn't compile
r.closeFile();
}
当我在printf方法上使用%d时,我看不到任何东西,当我使用%s时,我在输出上得到一些乱码,如
[I@1c3cb1e1 [I@54c23942
我该怎么做才能使它工作(即当c> 50时打印b对?)
提前感谢您提供任何帮助,对不起,如果事实证明这是一个明显的明显问题,但我真的没有关于如何改进这个问题的想法:)
答案 0 :(得分:0)
您无法使用%d
打印整个数组。循环遍历数组并分别打印每个值。
答案 1 :(得分:0)
由于您要在printf()
对于单个值,请使用类似..
的循环for(int i:table1){
System.out.print(""+i)
}
或强>
要成对打印,请替换以下代码......
if(c > 50)
{
table1[j]=a;
table2[j]=b;
System.out.printf("%d %d",a,b);
}
答案 2 :(得分:0)
您不能使用printf将数组格式化为int。如果要打印数组的全部内容,请使用辅助函数Arrays.toString(array)
。
E.g。
System.out.println(Arrays.toString(table1));
答案 3 :(得分:0)
如果我告诉你你有一个像
这样的文件12 33 54
93 223 96
74 743 4837
234 324 12
如果第三个整数大于50,你想存储前两个?
List<String> input = FileUtils.readLines(new File("file.txt"), Charset.forName( "UTF-8" ));
HashMap<Integer, Integer> filtered = new HashMap<Integer, Integer>();
for (String current : input) {
String[] split = current.split(" ");
if (Integer.parseInt(split[2]) > 50)
filtered.put(Integer.parseInt(split[0]), Integer.parseInt(split[1]))
}
System.out.println(filtered);