Tagged Questions

A Jar file which can be executed similar to an .EXE in windows or .bin in linux.

learn more… | top users | synonyms

40
votes
11answers
37k views

How to get the path of a running jar file?

My code runs inside a jar file, say foo.jar, and I need to know, in the code, in which folder the running foo.jar is. So, if foo.jar is in C:\FOO\, I want to get that path no matter what my current ...
18
votes
2answers
8k views

Building a runnable jar with maven 2

I'm relatively new to the maven mantra, but I'm trying to build a command-line runnable jar with maven. I've setup my dependencies, but when I run mvn install and attempt to run the jar, two things ...
18
votes
11answers
83k views

Running Jar file in Windows

I have a "helloworld.jar" file. For running a JAR file I am using a command-line window and executing the following command: java -jar helloworld.jar By using this command I can execute the JAR ...
13
votes
2answers
11k views

Problem building executable jar with maven

I am trying to generate an executable jar for a small home project called "logmanager" using maven, just like this: ...
13
votes
3answers
6k views

Distributing my python scripts as jars with jython?

I have been a python programmer for almost 2 years and I am used to writing small scripts to automate some repetitive tasks I had to do at office. Now, apparently my colleagues noticed this and they ...
11
votes
4answers
19k views

NoClassDefFoundError while trying to run my jar with java.exe -jar…what's wrong?

I have an application that I'm trying to wrap into a jar for easier deployment. The application compiles and runs fine (in a Windows cmd window) when run as a set of classes reachable from the ...
9
votes
5answers
2k views

JAR hidden inside EXE?

Minecraft, a Java game, is free this weekend. The Windows version downloads as an exe file. I was curious what the EXE file is doing and where it's unpacking and running the actual game JAR from. So ...
8
votes
8answers
9k views

“Invalid signature file” when attempting to run a .jar

My java program is packaged in a jar file and makes use of an external jar library, bouncy castle. My code compiles fine, but running the jar leads to the following error: Exception in thread "main" ...
6
votes
1answer
424 views

Scala: Creating a small executable Jar relying on external Scala libraries

I'm trying to package a small application (still learning Scala!) in a "clean way". The goal is to have an executable JAR file. I've done the following: packaged a JAR using sbt -> will work with ...
6
votes
2answers
287 views

Modify Executing Jar file

Hello Stack Overflow friends. I have a simple problem which i fear doesnt have a simple solution and i need advice as to how to proceed. I am developing a java application packaged as and executable ...
5
votes
1answer
1k views

Runnable jar with jvm args

I was trying to create a runnable jar file using Eclipse. The problem is that the vm parameters I have added to the run configuration in the Eclipse were not saved in any way. I know I can create a ...
5
votes
2answers
3k views

How can you package an executable jar with a portable JRE?

I want to be able to distribute by executable JAR without having to make the user upgrade to the latest version of the JRE. How can I package a JRE into the JAR so that they can run the jar with no ...
5
votes
2answers
12k views

Executing a Jar on Vista with a double click

This pretty much has me defeated. On XP and earlier versions of Windows you could customise Open With filetypes to include java - jar "myjar.jar", but on Vista this functionality seems to have been ...
4
votes
1answer
126 views

How do I pass a file as argument to my Java application created using JAR Bundler?

I would like to associate a specific file type with my application, so when I double-click one of the files of this specific type, my application opens. This works just fine, but the file I ...
4
votes
3answers
649 views

Executable JAR on Ubuntu (NetBeans)

I'm writing a simple Swing application in NetBeans and doing so on an Ubuntu machine for the first time. As many of you know, NetBeans automatically creates executable JARs for projects that are "set ...
4
votes
1answer
479 views

SBT project for java executable jar

What is the best way to set the target package for an SBT project to be an executable jar file? It would need to bundle scala-library.jar and set the manifest for main-method.
4
votes
3answers
1k views

Why does my JAR file execute at CMD, but not on double-click?

So I've been writing a simple 3D GUI application that I intended for users to use simply by double-clicking on the JAR file. I got it working perfectly before putting it into the JAR file, and I got ...
4
votes
2answers
261 views

Clojure REPL philosophy and utility applications

Sorry for the long post, but this forum always asks for use cases :-). I am frequently called upon to write utility applications (GUI and command line) for my organization. I most commonly write ...
4
votes
3answers
201 views

Arguments ignored in Java Jar

I'm running the following code on Ubuntu 10.10, using OpenJDK 1.6.0_18: package mypkg; public class MyTest { public static void main(final String[] args) { System.out.println(args.length + ...
4
votes
1answer
2k views

AJAX with Struts 1.x Version

I am having an application developed with Struts1.3, Jboss4.X version and jdk1.5 Now as an enhancement we are planning to implement AJAX to the web application Can you please suggest me Whether I ...
4
votes
3answers
6k views

How to specify JVM argument for Maven built executable JAR

When using Maven to build an executable JAR, how do I specify the JVM arguments that are used when the JAR is executed? I can specify the main class using <mainClass>. I suspect there's a ...
3
votes
1answer
61 views

Why does my executable jar which loads jruby not run under a folder with spaces in its name eg Program files?

I have an executable jar that loads jruby. An installer drops the jar and some pre-packaged jar libraries (including complete jruby and some gems) into the install location. Everything works fine ...
3
votes
3answers
69 views

Runnable JAR with duplicate dependencies

I am trying to create a runnable JAR using Eclipse, but an running into problems. The Eclipse workspace contains two separate projects which depend on the same library. I can create the runnable JAR, ...
3
votes
1answer
748 views

Eclipse - Extract/package the required libraries into the same Runnable JAR

When exporting a project as a Runnable JAR file using Eclipse, there are three choices: 1. Extract required libraries into generated JAR 2. Package required libraries into generated JAR 3. Copy ...
3
votes
1answer
689 views

Scala SBT: standalone jar

The answer: Making stand-alone jar with Simple Build Tool. seems like what I need, but it did not have enough information for me, so this is a followup. (1) How do I adapt the answer to my need? I ...
3
votes
1answer
70 views

Best option for packaging a Java CLI app for OS/X and Unix?

What's the best option for packaging and distributing a command line application written in Java, targetting OS/X and Unix? The executable jar option seems fairly robust, and my distribution doesn't ...
3
votes
1answer
355 views

Adding scala-compiler.jar as a runtime dependency

I'm using sbt and its Proguard plugin to create an executable jar for my program. However, my program relies on scala-compiler.jar at runtime to do compilations. I can't seem to get scala-compiler.jar ...
3
votes
1answer
267 views

how to run same jar file multiple times by forking new child process every time?

i am trying to write a c++ program. the program is required to run some jar files, run every jar file two times. the problem is that the program runs every file just one time correctly. at the second ...
3
votes
3answers
2k views

java runnable jar from netbeans 6.9.1

I have a project in NetBeans6.9.1. It works fine from inside the IDE. But when I try to run the jar, that NetBeans has automatically created under the dist directory, I get a NoClassDefFoundError for ...
3
votes
2answers
1k views

Problem creating an executable jar from scala file

I'm tryign to export my project as a jar with IntelliJ 9.0. My project compiles and runs with no problem in Intellij, but when I write it to a .jar and open it, it will show an error. My Main class ...
3
votes
1answer
1k views

How do I package up an applet with multiple .jar libraries?

I'm creating a Java applet from a large scale pre-existing project (Vizster). I am using NetBeans 6.7.1 with JDK 1.5 on Mac OS X. I am attempting to run the applet from it's single output .jar file, ...
3
votes
4answers
3k views

Create deployable jruby jar?

I need to compile my jruby application into a standalone jar. How can I do this?
3
votes
1answer
776 views

PHP, shell commands, and jar files

I have a jar file that I would like to execute using PHP, but when I run the script all I get is the following error: Could not reserve enough space for object heap. I have done some searching and it ...
3
votes
3answers
364 views

Executable Jars running very slowly

I've done several projects and packaged them into jar files, but I've noticed that my jar files run much more slowly than in my IDE. I use Eclipse to compile and run my programs. In Eclipse, I have ...
2
votes
2answers
53 views

How to make the basic jar's' to an excutable jar?

Hi all, I have about 10 jars and when I run my program I invoke the following: java -Xmx1024m -cp a.jar;b.jar;c.jar;whatever.jar -Dfile.encoding=UTF-8 [package][class] I want to make this as an ...
2
votes
3answers
131 views

Export Scala application to runnable JAR

Can you tell me, if this is possible, how to export a Scala application to a normal runnable JAR that can run directly in the JVM ? Thanks
2
votes
1answer
121 views

Access a file from a JAR in the same folder

I need to acces (create and read) a file from a JAR file (executable jar), and that file should be created in the same directory as the JAR I tried this.getClass().getResource("myFile") but ...
2
votes
2answers
106 views

Cannot run Java project configured to use Jython from a JAR

I have a Java project that makes use of the Jython library. I can build the code and execute it fine either in Eclipse or from the command line, however, when I package the project into a JAR file, I ...
2
votes
3answers
322 views

Java error using JARs, java.lang.NoClassDefFoundError: javax/mail/Store

I'm making a java application that uses Javamail, and it works great when I compile it. I want to make it into a jar file so it can be easily moved around and executed. The problem is I am getting ...
2
votes
4answers
209 views

How to make a java executable run in the background instead of the foreground?

I wrote a shell script to run a set of experiments so I won't have to do it manually. The script runs a java .jar file 30 times, and runs a set of those 30 times 17 times changing a few variables in ...
2
votes
1answer
96 views

Using other documents outside a jar file

I just realised that I cant use files from outside a jar archive. If thats the case then when I deploy apps that need other documents, say an xml file, do i send the xml alongside the app or there is ...
2
votes
2answers
853 views

Can't read input file - Reading an image contained in a jar file - java

I guess similar kind of question has been asked, but I could not find the solution. I am just working on a painting application based on Java Swings. I need to create an instance for the ...
2
votes
2answers
696 views

how to check the version of jar file?

Here is the question. Actually I am working on J2ME polish application, just enhansing it. I am finding difficulties to get the exact version of the jar file. Is there any way to find the version of ...
2
votes
0answers
288 views

Help with setting up classpath in an executable jar file

I am trying to build an executable jar with maven-assembly-plugin with all the dependencies. I want the dependencies in a /lib/ directory inside the jar, with the main jar outside, and the ...
2
votes
3answers
302 views

running a .jar file from the start=>run box in Windows 7

I've written some code and made a .jar file out of it, and I want to be able to run this code from the start=>run box in the Start menu. After a lot of trial and error, I made sure to construct my ...
2
votes
3answers
377 views

Execute .jar file from a Java program

How to run a local jar file from a java program? The jar file is not in the classpath of the Java caller programm. Thanks
2
votes
2answers
674 views

eclipselink PersistenceUnitLoadingEception in executable JAR

I am developing a stand-alone java application which uses eclipselink. It is all fine when I execute the app from eclipse IDE. But I've exported an executable JAR file, and since than I can not make ...
2
votes
2answers
401 views

Compile a jruby on rails application to a jar?

Is there a quick way to pack a jruby on rails application into a jar? Is there an ec2 on rails like virtual appliance for jruby on rails apps?
2
votes
4answers
419 views

Problem with my Bash script

He all, i have a problem with my bash script. That's my code: #!/bin/bash java -jar my_app.jar echo "The present working directory is `pwd`" If i exec it by ./script_name it work, but if i double ...
2
votes
3answers
390 views

Unable to run JAR file on another PC. Possible issue with Environment Variables?

I've built a JAR file and it executes fine on my PC (XP) which has Eclipse installed. It also works on another PC, which also has Eclipse. I've tried running it on another PC(XP) that does not have ...

1 2 3 4 5 6