我正在尝试将文本文件中的数字分配给哈希表第一个数字作为键,第二个数字作为值,文本文件看起来像第一行(123 321)第二行(456 565)第n行(789 875)所以我尝试将空格后的数字分配为值。
我不知道该怎么做
Scanner scanner = new Scanner(new File("C:/Users/msi/Documents/number.txt"));
scanner.useDelimiter(" ");
Hashtable<String, String> numbers = new Hashtable<String, String>();
while(scanner.hasNext())
{
numbers.put(scanner.next(),scanner.next());
System.out.println(numbers);
}