jnlp « jar « Java I/O Q&A





1. Diagnosing and improving performance of a java jnlp compared to jar file    stackoverflow.com

Customer X has asked for ways to improve the startup time of a Java process he uses. The problem is, it is not run through a jar file, but rather 'jnlp' ...

2. Java Image messes up when I run the .jnlp file    stackoverflow.com

I have a method that gets called at the start of my program, and it works fine when I run the jar, but when I run the jnlp file it crashes.

public ...

3. In java web start where does the jar file get downloaded to?    stackoverflow.com

As per Java web start where does the jar file get downloaded on a client machine?

4. File Can be accessed fwhile running jnlp but cannot be accessed through browser in java web start    stackoverflow.com

I'm trying to access a resource file which is in a jar file deployed in apache web server. The file can be accessed through the jnlp file in the deployed folder while ...

5. How to specify applet libraries in JNLP file    stackoverflow.com

I'm trying to deploy an applet using JNLP. The file structure is thus:

/
  dbstats.html
  dbstats.jnlp
  dbstats.jar
  lib/
    substance.jar
    trident.jar
   ...

6. jnlp-file for Java Webstart and Java Applet at the same time    stackoverflow.com

Can i use the same jnlp file to deploy a webstart application as well as the applet version of the same application? In other words, can a jnlp-file contain both an application-desc ...

7. Check whether jar has been called by a JNLP file / Java Web Start    stackoverflow.com

I have a JAR file which may be called manually or by Java Web Start / a JNLP file. Is there a possibility to check in the main method, how the ...

8. Get JARs under resources within .jnlp file with JNLP API    stackoverflow.com

Is there a way to get the JAR files referenced under <resources> within the .jnlp file of Java WebStart? I thought the JNLP API could help, but didnĀ“t find any method ...

9. What could be reason of not working lazy jar loading in applet with jnlp file?    stackoverflow.com

I have applet embedded in http page. Applet is signed (as all jars which I'm using) and it's using new java plugin which allows to embed applets in web page with ...





11. JNLP ,JWS Problem Unable to download Jar files(Tocat webserver)    coderanch.com

I had a problem with jnlp and java webstart. This is my code. ------------------------ <% if(useLiteLoader == true) { out.println(""); } else { out.println(""); } %> ...

13. How include jnlp.jar in Web project war file?    coderanch.com

I have HTML page in which is applet. Applet import javax.jnlp.FileOpenService and for that I need include jnlp.jar in my applet library folder. When I build project and run it, works fine. In next step I create Web project that have html page in which is same applet that use FileOpenService. When I build web project, NetBeans create war file where ...

14. Error while executing the executable jar file using Java webstart (JNLP)    java-forums.org

getting the below error when executing jar file using java webstart(JNLP) file. (java.lang.ExceptionInInitializerError at org.apache.log4j.Logger.getRootLogger(Logger.java: 104) at SplitPane2.(SplitPane2.java:58) at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknow n Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Un known Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.sun.javaws.Launcher.executeApplication(Unknown Source) at com.sun.javaws.Launcher.executeMainClass(Unknown Source) at com.sun.javaws.Launcher.doLaunchApp(Unknown Source) at com.sun.javaws.Launcher.run(Unknown Source) at java.lang.Thread.run(Unknown Source) Caused by: java.security.AccessControlException: access denied (java.io.FilePermission logfile.log write) I got the error when ...

15. Getting FileNotFoundException for application JAR file an JNLP    forums.oracle.com

I rewrote my Java desktop app to run via JNLP and near the start of the main class, I have the following code: try { jar_file = new JarFile(new File(getClass().getProtectionDomain().getCodeSource().getLocation().getFile())); } catch (IOException e) { System.out.println("Error creating JarFile for Toolkit, e: " + e); return; } The problem is that when the app is launched from a system with Java 1.5 ...