u123
u123

Reputation: 16329

Generate java JNLP files?

I have a java application that reads a resource folder containing a bunch of .jar files. For some of these .jar files corresponding JNLP files must be created based on default schema and stored in the same directory.

Are there good approach to create these JNLP file from a java application (and maybe add some data from the .jar files into jnlp nodes) ?

Upvotes: 5

Views: 2125

Answers (2)

Nik
Nik

Reputation: 255

It's basically an XML file. Any XML API could do it. Personnaly, I would go with the JAXB API if I had to create a JNLP file dynamically.

Upvotes: 1

Brian Agnew
Brian Agnew

Reputation: 272417

A good approach may be to start from the existing Ant-JNLP-War task. Either script Ant to do what you want, or make use of the code directly.

Upvotes: 1

Related Questions