Java Web Browser
Monday, 10 October 2008
Java webbrowser pivot code:
import java.io.*;
:
:
java.net.URL url;
try{
url=new java.net.URL(jTextField1.getText());
jEditorPane1.setPage(url);
}
catch(IOException e){
System.err.print(evt);
System.exit(-1);
}