how to create an applet
Answers were Sorted based on User's Feedback
Answer / akansha
Here is the java code of program :
import java.applet.*;
import java.awt.*;
public class FirstApplet extends Applet{
public void paint(Graphics g){
g.drawString("Welcome in Java Applet.",40,20);
}
}
Here is the HTML code of the program:
<HTML>
<HEAD>
</HEAD>
<BODY>
<APPLET ALIGN="CENTER" CODE="FirstApplet.class" WIDTH="800"
HEIGHT="500"></APPLET>
</BODY>
</HTML>
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / krishgopal
import java.applet.*;
import java.awt.*;
/*
<applet code="app" width=400 height=500>
</applet>
*/
public class app extends Applet {
public void paint(Graphics g)
{
g.drawString("hi java",100,200);
}
}
here we use applet pack to retrive all its mathods
to create an applet.
and awt to create window events.
all that u known.
paint() is to paint the page that means
create a page and putting everything on it.
"hi java" is a string to dispaly on sgrren and
100,200 are x &y axis' to the text where to
dispaly on screen.
applet code is must to disply an applet prgrm.
width=400 height=500 r size of dispalying screen.
we can dispaly applet prgrm in any browser
with use of HTML prgrm.
for more details just refer "complete reference" book.
Is This Answer Correct ? | 0 Yes | 0 No |
Explain about strings in java?
Difference between concurrent hashmap and hashtable and collections
What is static in java?
What is the differnence between String Buffer and String builder despite having knowledge that String builder is faster than String Buffer and last one is threadsafe.please tell another important difference.
What is the difference between static binding and dynamic binding?
Can singleton class be cloned?
What is Unicast and Multicast object? Where we will use?
1 Answers Scope International,
FOR EXAMPLE WE R HAVING TWO LIST ELEMENTS ..BOTH LISTS CONTAINS ID,NAME,PLACE ..I NEED TO COMPARE BOTH IDS IN TWO LISTS,IF ID'S R SAME MEANS WE HAVE ADD THE DETAILS(LIKE NAME,PLACE) TO MAP...HOW IS POSSIBLE ?CAN ANY ONE SUGGEST?
How do you delete a list in java?
What is the base class of all exception classes?
What is casting?
What is a boolean used for?