This is the example of opening a url from an applet. This program shows that how a url is opened in a new document or browser. When you click the button "google", new browser window will open displaying the specified url, in our case url is http://www.google.com. This is accomplished by specifying the target as " _blank" while calling getAppletContext.showDocument(url, target) function.
Here is the code of the program :
import java.applet.*;
|
|
Recommend the tutorial |
Ask Questions? Discuss: Java - Opening a url in new window from an applet View All Comments
Post your Comment