.txtファイルをインポートしたい(.txtファイルの1列に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とjavaSwingを使用しています
@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.");
}
}