• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Class Path Problems

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I've been trying to write a simple programs as such:
import java.awt.*;
public class Hello extends Applet
{
public void init()
{
"code"
}
}
The compiler says that "Superclass Applet of class Hello not found."
Can someone please help me. If its a classpath problem can you please let me know how to solve such a problem.
Thanks in Advance
Best Regards
Edmund
 
Ranch Hand
Posts: 55
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Applet class is found in java.applet package, not in the java.awt package. You need to import java.applet.* or just java.applet.Applet not java.awt.*
Matt
 
Edmund Chiang
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the reply its mad kewl!!
One last question
When I do the same thing for the listener class it doesnt work!
import java.applet.*;
import java.awt.*;
import java.util.*;
class MyActionListener implements ActionListener
{
public void actionPerformed(ActionEvent ae)
{
System.out.println("Hey Buddy this event thingy actually worked");
}
}
//Interface ActionListener or class MyActionListener not found
Thanks in Advance!
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The listener requires you to import
java.awt.event.*;
 
Edmund Chiang
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you very much!
Best Regards
Edmund
reply
    Bookmark Topic Watch Topic
  • New Topic