我正在尝试使用字符(start /?
,p
,t
,...)扫描文本文件,以便每个字母与特定图像匹配。但首先我必须阅读这封信,然后用图像建立连接。
a
答案 0 :(得分:0)
Scanner sc = new Scanner(new File("FilePath"));
while(sc.hasNextLine()){
String letters = sc.nextLine();
System.out.println(letters);
}
这样您就可以阅读文件中的每个字母。