Matt Gerrans
Posts: 1153
Nickname: matt
Registered: Feb, 2002
|
|
Re: java applet and html
|
Posted: Mar 2, 2002 12:50 PM
|
|
Applets use AWT or Swing to display graphical results in their frame. If you are talking about output to stdout (such as System.out.println()), I don't think you can see that in an Applet. Maybe if you run the applet with the appletviewer, that output will display in your console, but if the applet is running from a browser, there is no place for stdout to go (that I know of). For sure, if you set it up to run as an application, you can see both the graphics and the output to the console.
|
|