我正在嘗試構建測驗計劃。從JTextArea獲取用戶輸入
我決定用戶在JTextArea中輸入他們的答案(數字),然後按下按鈕後,結果將顯示在另一個JTextArea上,但我遇到了麻煩。
這是我的部分代碼。
JButton btnNewButton = new JButton("Submit!");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
if(textArea_3.equals("1"))
{
textArea_1.setText("Correct!");
}
}
});
什麼問題到底是什麼?你可以說得更詳細點嗎? – GeorgeG 2015-02-07 16:28:04