พึ่งใช้ครั้งแรก ทำด้วยnetbean รันบน html ไมไ่ด้อ่ะคะ ต้องทำยังไคะ
ตัวนี้โค้ดคะ คือพึ่งลองทำตามหนังสือดู
import javax.swing.*;
import java.awt.*;
public class Applet extends JApplet{
@Override
public void init(){
JLabel label = new JLabel("This is my very first applet");
setLayout(new FlowLayout());
add(label);
}
}
กับ
<html>
<head>
<title>Applet</title>
</head>
<body>
<APPLET CODE ="Applet.class" WIDTH = 100 HEIGHT = 50>
</APPLET>
</body>
</html>
สอบถามเรื่อง รัน java applet ไมไ่ด้คะ
ตัวนี้โค้ดคะ คือพึ่งลองทำตามหนังสือดู
import javax.swing.*;
import java.awt.*;
public class Applet extends JApplet{
@Override
public void init(){
JLabel label = new JLabel("This is my very first applet");
setLayout(new FlowLayout());
add(label);
}
}
กับ
<html>
<head>
<title>Applet</title>
</head>
<body>
<APPLET CODE ="Applet.class" WIDTH = 100 HEIGHT = 50>
</APPLET>
</body>
</html>