vote up 2 vote down star
3

I am displaying a list of files; i.e. xls, doc, pdf, odt etc., in my Java application (Eclipse RCP). When the user clicks on the file, I want to launch the appropriate (according to what the OS thinks) native application, just like it happens in Windows Explorer or the Finder.

And while I am here: It would be nice to also display the same icons that Finder or Explorer use for the different file types.

Is there a library or Eclipse plugin for this?

flag

51% accept rate
This appears to be a duplicate of this question: stackoverflow.com/questions/325299/… – Ry4an Feb 18 at 8:33
1  
Not really, notice the Java 1.5 restriction there: "I know that Java 1.6 introduced the Desktop API, but I need a solution for Java 1.5." – Jonik Jun 11 at 13:13

3 Answers

vote up 1 vote down

Sounds like you're after the Java Activation Framework ("JAF"). This API lets you determine what files are and what actions you can do on them. Or alternatively the Java Desktop Integration Component ("JDIC"). JDIC allows you to create and no doubt query file associations.

Both projects seem to be in a semi-abandoned state howeer (sigh). But that's par for the course for Sun these days. Only other thing I know of is some Windows specific third party library that's based on JNI called Winpack. It does a bunch of other things too.

You can get the associated icon using the FileSystemView class (Java 1.4+).

link|flag
Hmm, Desktop.open() seems the simplest way. If one can use Java 6, are there some advantages to using one of these libs instead? – Jonik Jun 11 at 17:57
vote up 3 vote down

I have found an API in Eclipse's SWT now that seems to do the trick: org.eclipse.swt.program.Program "provides access to facilities for discovering operating system specific aspects of external program launching."

It has methods to find the program for a given file extension, get the program's icon, and even launch the program.

link|flag
vote up 2 vote down

What you want (for Java 6) is java.awt.Desktop:

Desktop.getDesktop().open( 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.