자바 간단한 파일 input 프로그램 package net.hb.day17; import java.awt.*; import java.awt.event.*; import java.io.*; import java.util.*; public class Chat extends Frame implements ActionListener { private TextArea ta = new TextArea(); private Label LB = new Label("입력 : "); private TextField tf = new TextField(10); private Button btnSend = new Button("보내기"); private Button btnExit = new Button("종료"); private Panel pSouth = new P.. 더보기 이전 1 ··· 352 353 354 355 356 357 358 ··· 381 다음