我从文件中读取并存储在数组中,文件的第一行仅包含“1”,第二行包含从空格键分割的字典单词。那么如何从第二行读取文件呢?
try
{
File text = new File ("dictionary.txt");
Scanner file = new Scanner(new File("dictionary.txt"));
while(file.hasNextLine())
{
System.out.println("Level 1");
int level1 = file.nextInt();
file.nextLine();
for(int i = 1; i < 7; i++)
{
String [] array = content.split(" ");
String A = array[0];
String B = array[1];
String C = array[2];
System.out.println(B);
}
}
file.close();
}
文件的格式是
1
12345678_0001
慕妹3242003
相关分类