I need help about starting a process. I want to be able to Process.Start("calc");. That is from C# syntax... How do I achieve something like this with Java.
Thank you.
Printable View
I need help about starting a process. I want to be able to Process.Start("calc");. That is from C# syntax... How do I achieve something like this with Java.
Thank you.
Runtime.getRuntime().exec("notepad.exe");
I don't think the extension is necessary though. I ran the disk cleanup
utility cleanmgr.exe with the following................
Runtime.getRuntime().exec("cleanmgr");
Yep. But it's OK with the extension though. Thank you very much.
Have a nice day. Again, Thank you. :)