Views 8214 Votes 0 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
37 System/OS [virtualbox] VirtualBox에 Ubuntu 설치하기 file hooni 2019.11.22 908
36 System/OS SSH Passwordless Login Using SSH Keygen in 5 Easy Steps file hooni 2019.11.22 1388
35 Develop [python][django] request.cookie 읽어오기 ㅋㅋㅋ (쓰기) hooni 2019.12.06 1686
34 Develop 자주 쓰는 Docker 명령어 alias hooni 2020.01.10 269347
33 Develop [php] 3 Ways to Detect Mobile or Desktop in PHP file hooni 2020.01.28 3720
32 System/OS RPA란? 어디에 어떻게 쓰이고 누가 만드나? file hooni 2020.01.28 1355
31 System/OS Configure Postfix to Use Gmail SMTP on Ubuntu 18.04 file hooni 2020.02.07 1248
30 Develop [ios] Start developing your navigation app for CarPlay without enrollment file hooni 2020.02.22 124725
29 Develop [sh] html 안에 있는 img 다운 받는 쉘 스크립트 file hooni 2020.05.26 635
28 Develop [sh] 쉘스크립트 if 비교 연산 hooni 2020.05.26 59158
27 System/OS [linux] The Ultimate Wget Download Guide With 15 Awesome Examples hooni 2020.05.26 799
26 System/OS [linux] wget 명령 사용 예제 hooni 2020.05.26 1434
25 System/OS [mac] VirtualBox 실행 스크립트와 bash_profile 설정 file hooni 2020.07.08 954
24 System/OS How to Install and Use wget on Mac file hooni 2020.09.03 1277
23 System/OS Apache CORS 설정 1 hooni 2020.09.04 2710
22 Develop [js] Text 값을 클립보드에 복사하기 hooni 2020.10.10 675
Board Pagination Prev 1 ... 70 71 72 73 74 Next
/ 74