我正在嘗試爲文本文件中的每一行文本製作按鈕。我如何將這個方法添加到我的JFrame中?這是我試過的,任何幫助將不勝感激。如何爲TEXT文件中的每一行製作按鈕?
public void makeButton()
{
//extract name from file and add to JFrame
try
{
String fileName = "C:\\Buttons\\aaa.TEXT";
BufferedReader br = new BufferedReader(new FileReader(fileName));
String line = null;
while ((line = br.readLine()) != null)
{
JButton b = new JButton(line);
}
}
catch (IOException e20)
{
e20.printStackTrace();
}
}
有點像'ArrayList'? –
MikeCAT
爲什麼我需要按鈕的數組列表?我只是通過我的TEXT文件,併爲該文件中的每一行命名一個按鈕。 –
你想做什麼?只需要命名按鈕?這樣做。 – MikeCAT