S
sanjeev.atvankar
Hi Guru,
I create console application that Open Web Browser and pass URL with
query string.
My code is as below:
public static void main(String[] args)
{
try
{
String command = "cmd /c start "+
"http://localhost:8084/NCC/Banking?"+
"CTRL_CODE=GetAudFile"; System.out.println("URL is :"+command);
Runtime.getRuntime().exec(command);
return;
}
catch (Exception e)
{
System.out.println("Error :: "+e);
}
}
I create console application that Open Web Browser and pass URL with
query string.
My code is as below:
public static void main(String[] args)
{
try
{
String command = "cmd /c start "+
"http://localhost:8084/NCC/Banking?"+
"CTRL_CODE=GetAudFile"; System.out.println("URL is :"+command);
Runtime.getRuntime().exec(command);
return;
}
catch (Exception e)
{
System.out.println("Error :: "+e);
}
}