Link to home
Start Free TrialLog in
Avatar of avya2k
avya2k

asked on

Browser in Applet

I have an Applet
and i want to show a browser inside Applet
is there any way to do the same?
Avatar of Webstorm
Webstorm

Hi avya2k,

You can open a new browser window :
  getAppletContext().showDocument(new URl("http://www.google.com"), "_blank")

Avatar of Mayank S
What exactly do you mean by browser *inside* an Applet ;-) Ideally, the Applet should be in a browser :-)
you can simply use a JEditorPane with an HtmlEditorKit.  that's if you don't need much functionalities.
Avatar of avya2k

ASKER

Hi maheshexp
I want the same thing as shown in URL
but it is saying that it can open only the same url or site and not any url outside the host as it is not signed

is there any other solution or control to show as browser control or Rich text control with properties simillar to TextField control

Avatar of avya2k

ASKER

Hi maheshexp
I want the same thing as shown in URL
but it is saying that it can open only the same url or site and not any url outside the host as it is not signed

is there any other solution or control to show as browser control or Rich text control with properties simillar to TextField control or TextArea Control

ASKER CERTIFIED SOLUTION
Avatar of maheshexp
maheshexp

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of avya2k

ASKER

I tried with above example but Rediff.com is show not completely
Is there any way to quick show the page properly all contents

>>Is there any way to quick show the page properly all contents
JEditorPane don't have full features like any browser...