Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I invoking java web start in program?

I want to make use of the java web start advantage,but I dont want our customer face the java web start loading Screen,it seems ugly...and also customer maybe not install jre and the jre-install maybe fussy to them..so I want to package our application and jre into setup file using installanywhere. when user start our program,I want to invoking web start API to do the work like version compare,and offer outself loading screen .. so,Can I invoking web start in my program?and how? Best regards L.J.W

like image 980
L.J.W Avatar asked Nov 25 '22 19:11

L.J.W


1 Answers

I don't think web start is the way you want to go here. You can't change the loading screen, and if you want to access the user's computer in any way you'll have to bother the user with a confirmation, and risk them freaking out and canceling. Just roll your own auto-update; it's definitely not worth using web start just for that.

like image 179
qmega Avatar answered Nov 28 '22 08:11

qmega