Estou precisando colocar uma página de internet, dentro de frame…alguem sabe como fazer
Assim ?
import javax.swing.;
import java.io.;
public class paginaWeb extends JFrame {
JTextPane texto;
public paginaWeb(){
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle(“Exemplo paginaWEB”);
texto = new JTextPane();
try {
String url = “http://www.guj.com.br/”;
texto.setPage(url);
}
catch(IOException e) {
e.printStackTrace();
return;
}
this.getContentPane().add(new JScrollPane(texto));
this.setSize(640, 480);
this.setLocationRelativeTo(null);
this.setVisible(true);
}
public static void main (String args[]){
new paginaWeb();
}
}
Acho que seria o frame html, correto?
<FRAMESET rows="*,200">
<FRAME src="contents_of_frame1.html">
<FRAME src="contents_of_frame2.gif">
</FRAMESET>
Mais info aqui.
Se eu entendi vc pode usar JInternalFrame,
Tem a sua aplicação e dentro vc chama o browser, ou qualquer coisa (word,…).
http://www.portaljava.com.br/home/modules.php?name=Downloads&d_op=search&query=
T+++