IT/<안드로이드>

Hello,World를 출력하는 자바 Applet 프로그램과 html을 작성

_증거인멸 2014. 3. 9. 12:18

(Applet)

import java.applet.*;
import java.awt.*;


public class test extends Applet {

 public void paint(Graphics g)
 {
  
          g.drawString("hello , world",10 , 10 );
  
 }

}

 

(html)

<html>
<head>
</head>
<body>
<applet code="test.class" width=100 height=100>
</applet>
</body>
</html>

 

반응형