
- Forum
- Programming Talk
- Java
- Java question
Java question
This is a discussion on Java question within the Java forums, part of the Programming Talk category; what is meant by applet?...
-
01-30-2011, 01:25 AM #1
- Join Date
- Jan 2011
- Location
- chennai
- Answers
- 1
Java question
what is meant by applet?
-
An applet is a small piece of code that performs one specific task and makes use of the client's web browser to provide user interface.
-
02-09-2011, 05:12 AM #3
- Join Date
- Feb 2011
- Answers
- 1
Applet is used for GUI designing in java . Applet program can be stand alone application as well as dependent(run within internet explorer).
-
03-13-2011, 04:55 AM #4
- Join Date
- Mar 2011
- Answers
- 3
Q. Is it possible to have more than one Faces Configuration file?
Ans. Yes. You can define the list of the configuration files in the web.xml.
This is an example:
<context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>/WEB-INF/faces-config-navigation.xml,/WEB-INF/faces-beans.xml</param-value>
</context-param>
Note: Do not register /WEB-INF/faces-config.xml file in the web.xml . Otherwise, the JSF implementation will process it twice.
Hi there, I guess the Note: column should have been meant or intended for “faces-config.xml” file as thats the defaultconfiguration file for JSF (which is similar to struts-config.xml for Struts!!). faces-context.xml file sounds like the user defined config file similar to the aforementioned two xml files
-
04-28-2011, 08:41 PM #5
- Join Date
- Apr 2011
- Answers
- 1
An applet is a program written in the Java[tm] programming language that can be included in an HTML page, much in the same way an image is included.
-
08-15-2011, 01:24 AM #6
applet is a gui based on awt in java...
-
09-27-2011, 01:14 AM #7
- Join Date
- Sep 2011
- Location
- INDIA
- Answers
- 10
An Applet is any small application that performs one specific task that runs within the scope of a larger program.
In other words we can say that the applet is the first technique used in Java for GUI.By this we can create the small applications.
-
02-22-2012, 07:32 AM #8
- Join Date
- Feb 2012
- Answers
- 66
An applet is an application which is transmitted over the Internet and executed by a Java-compatible Web browser.Applets are small applications and are accessed on an Internet server, transported over the Internet, automatically installed, and run as part of a Web document.Applet has no main method.
-
03-05-2012, 03:09 AM #9
- Join Date
- Mar 2012
- Location
- USA
- Answers
- 1
Can any one explain me about THREADS in java.
-
Sponsored Ads

Reply With Quote





