การวาดภาพกราฟิก [home]
วิธีแปลโปรแกรม และสั่งประมวลผล
บทที่ 1 . 2 . 3 . 4 . 5 . 6 . 7 . 8 . 9 . 10 . 11 . 12
- การเรียก appletviewer
- ต.ย. html เรียก .class
  <applet code="j1101.class"
  width=200 height=50>
  </applet>


๛ :: j1101.java [view source]
คำอธิบาย ::
1. พิมพ์คำว่า test แบบ Applet
แบบฝึกหัด ::
1. พิมพ์โปรแกรมนี้ใหม่ และทดสอบประมวลผล

๛ :: j1102.java [view source]
คำอธิบาย ::
1. พิมพ์คำว่า 1 - 10 แบบ Applet
แบบฝึกหัด ::
1. พิมพ์โปรแกรมนี้ใหม่ และทดสอบประมวลผล

๛ :: j1103.java [view source]
คำอธิบาย ::
1. พิมพ์ เส้นตรง แบบ Applet
แบบฝึกหัด ::
1. พิมพ์โปรแกรมนี้ใหม่ และทดสอบประมวลผล

๛ :: j1104.java [view source]
คำอธิบาย ::
1. พิมพ์รูปหลายแบบ แบบ Applet
แบบฝึกหัด ::
1. พิมพ์โปรแกรมนี้ใหม่ และทดสอบประมวลผล

๛ :: j1105.java [view source]
คำอธิบาย ::
1. สร้างปุ่ม และคำนวณ แบบ Applet 
2. ใช้ Button Label และ TextField
แบบฝึกหัด ::
1. พิมพ์โปรแกรมนี้ใหม่ และทดสอบประมวลผล


sun.com ?
- init( ) : Automatically called to perform first-time initialization of the applet, including component layout. You’ll always override this method.
- start( ) : Called every time the applet moves into sight on the Web browser to allow the applet to start up its normal operations (especially those that are shut off by stop( )). Also called after init( ).
- stop( ) : Called every time the applet moves out of sight on the Web browser to allow the applet to shut off expensive operations. Also called right before destroy( ).
- destroy( ) : Called when the applet is being unloaded from the page to perform final release of resources when the applet is no longer used

ท่านจะไม่เห็นตัวอย่างด้านล่าง ถ้าไม่ลง JRE หรือ J2SE หรือใช้ Browser ที่ไม่สนับสนุน Java applet รุ่นใหม่ จึงต้องมีโปรแกรมทำหน้าที่แสดง Java applet ใน version ใหม่ ๆ อย่างถูกต้อง
j1101.class

j1102.class

j1103.class

j1104.class

j1105.class