-1
我試圖掃描帶有字符(p
,t
,a
,...)的文本文件,以便每個字母都能匹配某個圖像。但首先,我必須閱讀這封信,然後用圖像進行連接。掃描儀文本文件不能正常工作
Scanner sc = new Scanner(textfile);
int lenght = 0;
while (sc.hasNextLine()) {
try {
for (int j = 0; j != 0; j++) {
ImageMatrixGUI.getInstance().addImage(Land);
ArrayImages.add(Land);
}
char tipo = sc.next().charAt(0);
System.out.println(tipo);
if (tipo == 'p') {
ImageMatrixGUI.getInstance().addImage(pine);
}
}
}
你的意思是不工作?你會得到什麼輸出? – user1506104
循環應該做什麼? – Stormcloud
我無法讀取文本文件中的字符 –