Contents

Views 8212 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
자바를 이용해 애플릿을 만들면 항상 HTML파일을 만들어서 테스트를 하게 된다.
매번 이 HTML 파일을 만드는 것은 귀찮은 작업이다.
이번에는 SHELL을 이용해서 자동적으로 HTML파일을 만드는 작업을해보자.

apl.sh 파일
용도: 클래스 이름과 동일한 HTML파일을 작성하고 appletviewer로 애플릿을 테스트한다.
#!/usr/bin/csh
# usage : % apl.sh  클래스이름
# ex) % apl.sh  HelloWorldApplet
 
set TMP=$1.html
echo "<applet code=$1.class width=300 height=400>n</applet>" > $TMP
appletviewer $TMP
 
rm $TMP


[출처] https://www.hooni.net/xe/578


?

List of Articles
No. Category Subject Author Date Views
861 System/OS [linux] 특수문자 환경 설정(stty) hooni 2003.04.23 15275
860 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 11939
859 System/OS [linux] 터미널에서 문자 깨질 때 설정 ㅋㅋ hooni 2003.04.23 13914
858 System/OS [linux] 콘솔/Xwindow 에서 PC스피커 소리 없애기 hooni 2003.04.23 16352
857 System/OS [linux] 콘솔 기본언어 설정 방법 hooni 2013.04.23 12826
856 System/OS [linux] 커널 컴파일, 설정 hooni 2003.04.23 17845
855 System/OS [linux] 최소한의 커널 설정(커널설치 전체과정) hooni 2003.04.23 17395
854 System/OS [linux] 초간단 SquirrelMail 설치/설정 (다람쥐 메일) hooni 2017.12.11 4457
853 System/OS [linux] 초간단 Postfix, Covecot, SSL/TLS (SMTP) file hooni 2017.12.11 9323
852 System/OS [linux] 처음 설치부터 APM 설치까지 (업데이트 할 것) hooni 2013.04.23 38271
851 System/OS [linux] 종료와 종료코드 확인(환경변수에서) hooni 2003.04.23 15540
850 Develop [linux] 임베디드 리눅스 (embedded linux) file hooni 2013.04.23 7354
Board Pagination Prev 1 ... 22 23 24 25 26 27 28 29 30 31 ... 98 Next
/ 98