Issue
How do I open a file with the default associated program in Java? (for example a movie file)
Solution
You can use rel="noreferrer">Desktop.getDesktop().open(File file)
. See the following question for other options: "[Java] How to open user system preffered editor for given file?"
Answered By - Zach Scrivena
Answer Checked By - Marilyn (JavaFixing Volunteer)