Eu tento abrir o arquivo HTML do local (No meu sistema) pelo programa Java. Eu tentei alguns do programa conseguiu passar estouro de pilha, mas não o seu trabalho tanto.
Para EG: Eu tenho esse arquivo HTML pequena.
<html>
<head>
Test Application
</head>
<body>
This is test application
</body>
</html>
Meu código Java:
Runtime rTime = Runtime.getRuntime();
String url = D:/hi.html;
String browser = C:/Program Files/Internet Explorer/iexplore.exe ;
Process pc = rTime.exec(browser + url);
pc.waitFor();
Qualquer solução ou dicas apreciado.