What are the restrictions of an applet & how to make the applet access the local machines resources.
Latest Answer : Apart from init,start,stop and destroy the Applet class has the following methods:1. public void paint(Graphics)2. public void repaint3. public void update(Graphics)4. public void showStatus(String)5. public String getParameter(String) ...
Latest Answer : yes, we can communicate between 2 applets by using its appletContext() methods. ...
Latest Answer : Trusted Applet : A trusted applet can perform operations such as reading, writing data to a local computer.We can access n/w connections from any host on the n/w by using trusted applet. A trusted applet ...
Latest Answer : java.applet.* is a package which contain classes and interfaces whereas java.applet.Applet is a class in that package. ...
Latest Answer : They r embedded in html pages and downloaded over internet.r executed in java compatible web-brower,they don't hav main() method..as in applications ...
Latest Answer : life cycle of applets are: init(); start(); stop(); destroy(); ...
Latest Answer : Applets are executed within a web browser, and there's an easy way to load show a specific URL. 1. Get a reference to the applet context 2. Call the showDocument method with a URL object as parameter. The following code snippet shows you how this can ...
Latest Answer : The AppletStub Interface provides, communicate between an applet and the browser [or applet viewer].Programmer will not implement this interface. ...