vote up 0 vote down star

I would like to try open file without extension. When I try to open file without extension, then system show me "Open with" form. But when I am trying to open that file in side my application using method:

    private static void openFile(String fileName) throws IOException {
    	if(Desktop.isDesktopSupported()) {
    		Desktop desktop = Desktop.getDesktop();
    		File file = new File(fileName);
    		desktop.open(file);
    	} else {
    		Runtime.getRuntime().exec(String.format("cmd /c start %s", fileName));
    	}
    }

system don't show this form. How to solve this?

flag

69% accept rate
Hi, Does it throws an Exception? – ATorras Aug 21 at 9:25
Why not add an extension to the file. It will be clearer for your users as to what the file is for. – pjp Aug 21 at 9:25
Yes. Method throws exception: java.io.IOException. Error message: The parameter is incorrect. – mykhaylo Aug 21 at 9:52
I think this link could be helpful: java.sun.com/javase/6/…) – ATorras Aug 21 at 10:27

1 Answer

vote up 1 vote down

Desktop.open() launches the application associated with the extension of the file.

link|flag

Your Answer

Get an OpenID
or

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