質問があります - 結果/DB Select を JTextArea に書き込む方法です。私のJButtonの方法は次のとおりです。
public void actionPerformed(ActionEvent evt){
try{
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Connection OK");
connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/filisng", "root", "passw");
statement = connection.createStatement();
result = statement.executeQuery("select * from `filisng`.`names`");
while(result.next()){
String nam = result.getString("Name");
String surnam = result.getString("Surname");
System.out.printf("Name: %s\tSurname: %s\t\n", Name, Surname);
}
}catch(ClassNotFoundException ex){System.out.println("Class Not Found! " +ex);
}catch(SQLException exception){
System.out.println("SQL Error " + exception);
}
}
使用するSystem.out.printf("Name: %s\tSurname: %s\t\n", Name, Surname);
と、コンソールに出力が表示されますが、テキストを JTextArea に設定するにはどうすればよいですか?