如何將僅包含char
的文本文件中的數據讀入僅使用java.io.File
,Scanner
和文件未找到異常的2d數組中?將文件讀取爲2d字符數組
這裏是我試圖使文件讀取到2D數組的方法。
public AsciiArt(String filename, int nrRow, int nrCol){
this.nrRow = nrRow;
this.nrCol = nrCol;
image = new char [nrRow][nrCol];
try{
input = new Scanner(filename);
while(input.hasNext()){
}
}
}
謝謝你,這有助於慢跑我的記憶。我一直在傾訴不同的代碼,有時我忘了。 –