Gui テキスト領域でファイルを読み取る際に問題が発生しました。うまくいけば、ファイルの読み取りに関するステートメントを修正するのを手伝ってくれることを願っています。どうもありがとうございました。
public static javax.swing.JTextArea jTextArea1;
{
BufferedReader br = null;
try {
String sCurrentLine;
br = new BufferedReader(new FileReader("C:\\testing1.txt"));
while ((sCurrentLine = br.readLine()) != null) {
jTextArea1.read(br, "C:\\testing1.txt"); \\the problem is here
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)br.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}