Here's my dilemma: I'm trying to make a command-line Java program, and I want one of the features to be to call on Notepad to open up a file. Now I know you can do this from CMD with something like
notepad "filename.txt"
and I know that you can do it in VB using Shell() or .NET using Process.Start().
However, is there any way to do this from Java? I would see why not since it's cross-platform and all and this kind of defeats the purpose, but it would be awesome to (know how to) implement this.