como escrever resultado para JTextArea

Eu tenho pergunta - como escrever o resultado / DB Selecione para JTextArea. O método do meu 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);
}

    }

Se eu usarSystem.out.printf("Name: %s\tSurname: %s\t\n", Name, Surname); - Eu vejo a saída no console, mas como definir o texto para JTextArea?

questionAnswers(1)

yourAnswerToTheQuestion