import java.io.IOException;
public class ProcessBuilderDemo
{
public static void main(String args[]) throws IOException
{
ProcessBuilder probldr = new ProcessBuilder("notepad.exe", "rajpootfile");
probldr.start();
}
}
public class ProcessBuilderDemo
{
public static void main(String args[]) throws IOException
{
ProcessBuilder probldr = new ProcessBuilder("notepad.exe", "rajpootfile");
probldr.start();
}
}
No comments:
Post a Comment
Thank You !