Creating a Web Browser using JEditorPane
I am using JEditorPane to create a simple web browser. When we open http://www.google.com enter some data in text field and press " Google Search " Button, the browser cannot detect it.
But If we try the same thing at http://www.yahoo.com it will work properly. I am connecting to internet using lan and made the proxy settings in program as
System.getProperties().put("proxySet","true");
System.getProperties().put("proxyPort","8080");
System.getProperties().put("proxyHost","192.168.2.1");
I am using this statement to get the page
pane.setPage(urlField.getText());//here pane is a JEditorPane
Also The browser is displaying some unnecessary data like
#yl img{position:relative;top:-10px}
How can I display images with relative path name in JEditorPane.
Please help in this regards
After all these conditions I want to give the multi language support for my browser.
If anybody done this already or know about this Please help me.
Thank you
Sandeep

