Reputation: 72344
I'd always heard of the JDic project being around, but never really had a need for it until now (I'm looking to register file associations with Java, and it seemed like the most promising solution.)
However, upon going to its project page (the only one I can find) it seems that there's no jar downloads or anything of the sort, and the last commit was over a year ago (the last series of "active looking" commits was over 3 years ago!)
I'm presuming this is now a dead project - is this the case? And if so is there any replacement? Or has it just moved (I certainly couldn't find where to though?) It'd be nice to just be able to grab the jars from somewhere rather than build the whole lot from source. Failing that, is there a better option (or what's the next best option) for registering custom file types using Java?
Upvotes: 2
Views: 3566
Reputation: 9756
This Sun Developer Network article, Using the Desktop API in Java SE 6, still links to JDic (Desktop API being a more restricted, read-only subset).
Seems like Eclipse SWT does not have support for editing file associations either, so I'm afraid you will be restricted to either finding a cached copy of jdic.jar or building it yourself.
Upvotes: 1
Reputation: 168835
I'm looking to register file associations
Java Web Start can do that. Does the app. have a GUI?
Here is a small demo. of the JNLP API files services that declares an interest in the .zzz
file extension.
Upvotes: 1