给定一个文本文件如下:
10
100
99
99
96
96
92
92
91
88
87
86
其中第一个数字"10"表示文本文件包含10 个整数,第二个数字100表示文本文件中的所有数字不超过100。
我的目标是阅读文本并填写int data[][];
如下:
data[0][0]=1 data[0][1]=99
data[1][0]=2 data[1][1]=99
data[2][0]=3 data[2][1]=96
data[3][0]=4 data[3][1]=96
data[4][0]=5 data[4][1]=92
data[5][0]=6 data[5][1]=92
data[6][0]=7 data[6][1]=91
data[7][0]=8 data[7][1]=88
data[8][0]=9 data[8][1]=87
data[9][0]=10 data[9][1]=86
cbin = 100 // bin capacity
nbin = 10 // number of objects
这意味着索引的第一个 raw 和 item 的值或权重的第二个 .. 以及int cbin = \\the second text's value
我int nbin = \\the first text's value
在线程中遇到异常的问题
“AWT-EventQueue-0”java.lang.NullPointerException
这是我的代码:
public static int[][] data=null; \\ in the first of the document
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(null);
File f= chooser.getSelectedFile();
BufferedReader br = null;
try {
br = new BufferedReader(new FileReader(f));
} catch (FileNotFoundException ex) {
Logger.getLogger(interface1.class.getName()).log(Level.SEVERE, null, ex);
}
try {
StringBuilder sb = new StringBuilder();
String line = br.readLine();
int i=0,j=0;
while (line != null) {
if(i==0){
nbin= (int) Integer.parseInt(""+line);
System.out.println(nbin);
}
else if (i==1) {
cbin=(int) Integer.parseInt(""+line);
System.out.println(cbin);
}
// sb.append(line);
line = br.readLine();
if(i >= 2 && line != null){
data[j][1]=(int) Integer.parseInt(line);
data[j][0]=j;
j++;
}
i++;
}
} catch (IOException ex) {
Logger.getLogger(interface1.class.getName()).log(Level.SEVERE, null, ex);
} finally {
try {
br.close();
} catch (IOException ex) {
Logger.getLogger(interface1.class.getName()).log(Level.SEVERE, null, ex);
}
}
有任何想法吗 ??