0
How to install appletviewer?
6 Answers
0
Basically appletviewer is a command to run your applet program when you are working with applets .... And u can make applets by importing java.applet package .. its already there
0
can you tell me how to implement applet in an HTML page?
0
1)Create two separate file in notepad or anything else .java and .html .
2)Write your java applet code in .java file
3) In .html file write this
<applet code="Your java class name.class" width="300" height="120"></applet>
4)And then compile your java file ..if u r using command line then use command 'javac'
Eg. javac filename.java
5) Run your applet file with the command.
'appletviewer'. Eg. appletviewer filename.html (Dont use 'java' command to run your java file)
6)You made your applet
0
If in my pic appletviewer is not installed what I do
0
Install java standard edition(java se) in your pc and run rest of code........
0
How to Run AppletViewer Program in Macos on Latest version ofJDK