J
Jakir
Hi
Can any one help me in finding what could be wrong in the following
sample. Its not able to open Netscape on HP-UNIX.
I am new to java programming.
class javaHello {
public static void main(String[] args) {
System.out.println("Hello World.\n");
try
{
Runtime.getRuntime().exec("netscape");
}
catch(Exception e)
{
System.out.println("Failed to execute.\n");
}
}
}
Thanks & Regards
Jakir
Can any one help me in finding what could be wrong in the following
sample. Its not able to open Netscape on HP-UNIX.
I am new to java programming.
class javaHello {
public static void main(String[] args) {
System.out.println("Hello World.\n");
try
{
Runtime.getRuntime().exec("netscape");
}
catch(Exception e)
{
System.out.println("Failed to execute.\n");
}
}
}
Thanks & Regards
Jakir