vote up 1 vote down star

Can I launch a Java WebStart application with a set of parameters just like an applet is configured with the <param> tags ?

Thanks

flag

59% accept rate

2 Answers

vote up 1 vote down check

Yeah you can, the following shows an example:

<application-desc main-class="my.main.class">
    <argument>-user=bob</argument>
    <argument>-pass=8jkaiuasu</argument>
</application>

Showing you passing the arguments "-user=bob" and "-pass=8jkaiuasu" to the application. Arguments are picked up in the standard way.

link|flag
vote up 1 vote down

Yes, check out the JNLP Tag reference

link|flag

Your Answer

Get an OpenID
or

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