したがって、次のようなアイテムを含むテキストファイルがあります。
350279 1 11:54 107.15
350280 3 11:55 81.27
350281 2 11:57 82.11
350282 0 11:58 92.43
350283 3 11:59 86.11
これらの値から配列を作成しようとしています。各行の最初の値は配列にあり、各行の 2 番目の値は配列にあるなどです。
これは私が現在持っているすべてのコードであり、その方法を理解できないようです。
package sales;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Sales {
public static void main (String[] args) throws FileNotFoundException {
Scanner reader = new Scanner(new File("sales.txt"));
int[] transID = new int[reader.nextInt()];
int[] transCode = new int[reader.nextInt()];
String[] time = new String[reader.next()];
double[] trasAmount = new double[reader.hasNextDouble()];
}
}