Opening Mozilla or NetScape

Hey does anybody knows how to open mozilla or netscape inside a java program?
[84 byte] By [Rylogy] at [2007-9-30 20:47:39]
# 1
You can useRuntime.getRuntime ().exec ("cmd /c start mozilla");Note that this will work for Windows only - for other OSs you'll have to use a different command.Kind regards, Levi
levi_h at 2007-7-7 2:20:47 > top of Java-index,Java Essentials,Java Programming...
# 2
Do you mean under Windows ?If so, you can try the command: start "your HTML document.html" (this launches the default browser) See the start help for details on options to use.
Franck_Lefevre at 2007-7-7 2:20:47 > top of Java-index,Java Essentials,Java Programming...
# 3
I mean like opening a web browser inside the programexampleI have a program with a 2 tabsFirst one with the html editorSeconde tab has the web browser in itUnderstand? I don't want to give a command so a web browser opens outside the program
Rylogy at 2007-7-7 2:20:47 > top of Java-index,Java Essentials,Java Programming...
# 4
Then use an editor pane. You can't open native frames inside your frame.
levi_h at 2007-7-7 2:20:47 > top of Java-index,Java Essentials,Java Programming...
# 5
http://jrex.mozdev.org/ http://today.java.net/pub/a/today/2004/05/24/html-pt1.html http://www.nothome.com/IECanvas/
BickelT at 2007-7-7 2:20:47 > top of Java-index,Java Essentials,Java Programming...