질문좀드릴게여~textfiel에대한..
노을빛
제가 자바를 공부하려고하는데여..
textfiled에입력을 하면 textarea로 출력되게끔 하고싶은데 어떻게해야할지 도저히 모르겠습니다...
좀알려주세여 ~~
아래는 소스입니다...ㅠㅠ
import java.awt.*;
import java.awt.event.*;
import java.io.*;
class aa extends Frame implements ActionListener
{
TextField textfield;
TextArea textarea;
Label label;
String filename;
public aa(String str){
super(str);
setLayout(new FlowLayout());
label = new Label(파일 이름을 입력하세요);
textfield = new TextField(20);
textfield.addActionListener(this);
textarea = new TextArea(30, 70);
add(textarea);
addWindowListener(new WinListener());add(label);add(textfield);
}
public static void main(String args[]){
aa text = new aa(파일읽기);
text.setSize(700, 600);
text.show();
}public void actionPerformed(ActionEvent ae){
byte buffer[] = new byte[500];
filename=textfield.getText();
try{
FileInputStream fout = new FileInputStream(textfield);
//fin.read(buffer);
String data = new String(buffer);
textarea.append(filename+\n);
//textarea.append(i love you);
}catch(IOException e){
System.out.println(e.toString());
}
}
class WinListener extends WindowAdapter
{
public void windowClosing(WindowEvent we){
System.exit(0);
}
}
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2697830 | [질문]어느 범위로 들어가면 다음 프레임으로 넘어갈려면??? | 맑다 | 2025-06-11 |
2697806 | [질문] 이미지나 텍스트를 플래시상으로 불러올때 | 미라 | 2025-06-11 |
2697778 | 투명도 css-validator 체크 문의 (3) | 츄릅 | 2025-06-11 |
2697729 | 오류가딱1개...... | 아롱별 | 2025-06-10 |
2697703 | 개인 일기장 홈페이지 만들기 | 푸르 | 2025-06-10 |
2697676 | nChar 질문 | 소율 | 2025-06-10 |
2697652 | xhtml 관련 질문이요 ! (6) | 클 | 2025-06-09 |
2697626 | warning: variable "dbUS" was declared but never referenced (1) | 꽃내 | 2025-06-09 |
2697567 | mfc 질문드립니다! (2) | 물맑 | 2025-06-09 |
2697542 | iframe은 표준? 비표준? (2) | 조은 | 2025-06-08 |
2697516 | datagrid 활성/비활성시 알파값 변경 | 시내 | 2025-06-08 |
2697487 | html5 css3 학원 추천좀해주세요 (1) | 예그리나 | 2025-06-08 |
2697459 | 이런 질문도 답변해주실지는 모르겠습니다만 병특에 관한 질문입니다. | 승아 | 2025-06-08 |
2697422 | 가운데 정렬하는 방법좀 흑흑흑... (3) | 목련 | 2025-06-07 |
2697395 | 홈페이지 기본구조에 대해서... (6) | 모든 | 2025-06-07 |
2697366 | 에..조금 짜보고 다시 질문입니다. (2) | 나샘 | 2025-06-07 |
2697333 | li 가운데 정렬.....도와 주세용... (7) | 초고리 | 2025-06-07 |
2697284 | 이미지를 흐리게 (2) | 난새 | 2025-06-06 |
2697258 | VC++ 6.0(studio)을 깔면서 재미가 붙었는데..ㅠㅠ (4) | 앵겨쪼 | 2025-06-06 |
2697228 | WorkFlow가 궁금합니다.. 다들 어떻게 하시는지.. (1) | 애기 | 2025-06-06 |