I have a Windows program with the following flow:
generated config file -> user edits config file -> use config file
Ideally I want to la
Just figured out the notepad solution -- doh! it was quite obvious :)
Use Runtime.exec() and Process.waitFor():
Process p = Runtime.getRuntime.exec("notepad " + filename); p.waitFor();