我想导入任何 .txt 文件(请注意 .txt 文件在一列中有 3 组数字;每组用空格分隔)
2
3
4
3
2
1
1
2
3
并将一组数字转换为数组。(数组 1、2 和 3)
array1[] = {2,3,4}
array2[] = {3,2,1}
array3[] = {1,2,3}
然后能够在 JFreeGraph 库中绘制数组,这就是我开始的方式......我正在使用 netbeans 和 java Swing
@Action
public void openMenuItem() {
int returnVal = jFileChooser1.showOpenDialog(null);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = jFileChooser1.getSelectedFile();
try {
FileReader fileReader = new FileReader(file);
jTextArea2.read(new FileReader(file.getAbsolutePath()), null);
} catch (IOException ex) {
System.out.println("problem accessing file" + file.getAbsolutePath());
}
} else {
System.out.println("File access cancelled by user.");
}
}