vote up 1 vote down star
1

How do I open a file with the default associated program in Java? (for example a movie file)

flag

2 Answers

vote up 3 vote down check

You can use Desktop.getDesktop().open(File file). See the following question for other options: "[Java] How to open user system preffered editor for given file?"

link|flag
I keep getting this exception when trying with a movie file but it work with an image file (bmp): java.io.IOException: Failed to open file:/D:/vidz/2006-04-02.wmv. Error message: The parameter is incorrect. – Blade Feb 15 at 19:30
Can you provide your code in the question? Also, which OS and Java version are you using? – Zach Scrivena Feb 15 at 19:36
what I don't understand is that it work with images... anyway I'm using Java 1.6.0.06 and here's the code: File file = new File(MoviePlay.getInstance().getBasePath(), movieFile.getPath()); try { Desktop.getDesktop().open(file); } catch(ex) { ... } – Blade Feb 17 at 2:03
oh and btw, file.exist() == true – Blade Feb 17 at 2:04
@Blade: Could you try file.getCanonicalFile() to see if there's a difference? – Zach Scrivena Feb 17 at 3:13
show 2 more comments
vote up 0 vote down

SwingHacks has a solution for older versions of Java.

I think they used the Runtime object to execute the 'start' command on windows and there is a similar command on the mac.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.