import java.io.IOException;
public class TestNavigateur {
public static void main(String[] args) throws IOException {
String cmd = "cmd.exe /c start ";
String siteweb = "http://www.mesexemples.com";
Runtime.getRuntime().exec(cmd + siteweb);
}
}