채팅창을 흉내내어 입력한 내용을 엔터키 누르고 전송하면 JTextArea에 출력 채팅을 치고 엔터키를 누르면 전송하는 방법import java.awt.BorderLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.JScrollPane;import javax.swing.JTextArea;import javax.swing.JTextField;import javax.swing.SwingUtilities;public class JTextAreaExamp..