Is it possible to run a Java run in a program?

I want to take advantage of the java web start, but I don’t want our client to look at the loading screen of the java site, it seems ugly ... and also the client may not install jre, and jre-install can be fussy about them ..so I want to pack our application and jre into the installation file using installanywhere. when the user launches our program, I want to call the web launch API to do the work as a comparison with the version, and offer the loading screen myself. So, can I make a web page launch in my program? And How? Regards LJW

+5
source share
3 answers

I don’t think that a web start is how you want to go here. You cannot change the boot screen, and if you want to access the user computer in any way, you will have to bother the user with confirmation and risk being distracted and canceled. Just scan your own auto-update; it's definitely not worth using the web start just for that.

+1
source

For the boot screen screen:

<jnlp ...>
    <information>
        <icon kind="splash" href="splash.gif" />
        ...
    </information>
    ...
</jnlp>
+1
source

If you install your application locally on a user machine, why do you need to invoke JWS?

-2
source

All Articles