JAR file (or Java ARchive) aggregates many files into one. JAR files build on the ZIP file format.
0
votes
0answers
5 views
Javassit Writing Directly to a JAR
The following works until the ERROR comment line. The intent is to write directly to the JAR.
import javassist.*;
class Injector
{
public static void main(String[] argv) throws Exception
{
...
0
votes
1answer
25 views
Exporting Image/Text files with JAR
So I have seen this question everywhere but I can't seem to understand the answer. Right now my code for importing an image looks like this:
private Image dirt = new ...
0
votes
1answer
26 views
Sound issues in jar file
I have a very weird issue I cant fix.
I'm currently making a game and I want sound in the game. It is supposed to be run as a jar file and the game works perfectly fine when running it from eclipse.
...
0
votes
1answer
14 views
Entering Text in Textbox of a jar File using Shell Script
I have a graphical interface in jar file. There is a text box in there and a button in the window. I manually enter the text into it and then click the button to get the required output.
Now I want ...
0
votes
1answer
15 views
Could not load a dependent class com/jcraft/jsch/Logger
While trying to execute target in Eclipse's ant, containing scp task, I am getting an error
BUILD FAILED
...
1
vote
1answer
36 views
Scala NoClassDefFoundError when trying to use jar
First I cloned scopt and created a jar:
git clone git://github.com/scopt/scopt.git
sbt package-bin
Then I created a file, ArgTest.scala (using the scopt example):
case class Config(foo: Int = -1, ...
0
votes
0answers
59 views
My jar file wont run
My sourcecode compiles, and I use this to make my Jar file because I have may images and classfiles:
jar cfm Launcher.jar manifest.txt *.class images
jar uf Launcher.jar images/*.png
how could I go ...
0
votes
0answers
55 views
Why are environment variables being “lost” when running a jar file
I have a Java app which picks up a couple of Windows environment variables to run correctly. In Eclipse it does run correctly. By the way, these are dependencies on Ghostscript and Tess4J in case ...
0
votes
2answers
36 views
How to make jar out of github sources?
There is a mahout-math project on github. How can I make a jar out of it? I need to use the most recent code because the only one I could find located here, is buggy. Errors I get:
[ERROR] Failed to ...
0
votes
1answer
8 views
double click jar file
I have created a swing program that displays a gui and takes user data from the respective gui. The program works fine when I am running it from eclipse. But the problem is that when I make an ...
0
votes
0answers
17 views
java/slick -exporting music in jar doesn't work
I'm creating a java 2d game using slick. I exported jar file using eclipse with following result:
JAR export finished with warnings. See details for additional information.
Exported with ...
0
votes
2answers
75 views
Why is my Runnable Jar file not working
I followed about 10 different tutorials and none of them seemed to do the trick, my runnable jar file just isn't working.
My game runs fine when I run it in eclipse, and I was able to make it into a ...
0
votes
1answer
12 views
Eclipse4 RCP Standalone Product : Class Not Found Expection
I have created two plug-in projects. The first declares my views, I'll call this my component project. The second declares my product, application and perspectives, incorporating various views from my ...
0
votes
0answers
16 views
Maven filter src/main/resources of a JAR dependency
My maven top level project refers to a common-db project. In this project I have a spring file which defines the DB parameters.
However, I want the top-level project to define the DB parameters ...
0
votes
0answers
29 views
No output when running jar from shell script
I am running a jar-file in a shell script calling hierarchy. I want to redirect the output from executing the jar file to my logfile "loga.log" but this does only work when I run this script with ...
0
votes
0answers
10 views
How do I make NetBeans Module reference an external jar in place without copying it to the project folder?
I'm building a NetBeans Platform Application (RCP) and reference a number of external jars including JFreeChart.
NetBeans copies the jars from my library folder (where I store jars for use in all my ...
0
votes
0answers
51 views
Java classpath within a jar, within a jar
I have a jar which has all libraries inside of it already. This jar needs to become part of a larger "packager" project where it will be deployed as a jar, then modified.
I would like to both use ...
0
votes
2answers
51 views
How should path to some properties file look like if i want it run the project as jar file through command line [duplicate]
I have a simple project which depends on jar file. Jar file has single class with constructor which takes in path to props.xml.
This is the project structure:
Here is the main class:
import ...
-1
votes
4answers
30 views
How to run a custom jar file copy to classpath command using java?
I have a jar file which I'm using to run as an application. However, every time I run my application I need to add -cp "jar name" to compile it and then run the java application.
How can I make a ...
0
votes
0answers
16 views
Could not find class 'org.apache.http.entity.mime.content.Filebody', referenced from method
What I'm trying to do is to send a picture to a web server. When I call a method in my Android project I get the following error: could not find class 'org.apache.http.entity.mime.content.Filebody', ...
0
votes
1answer
11 views
Warning POM missing in the jar
I have created the jar through maven from some other project. The jar reside in the location repository. The jar contains the pom.xml file in META-INF/maven///pom.xml
and pom.properties.
I have also ...
0
votes
1answer
25 views
Jar file versus reference to the Android Library
You will really make my day by explaining the following nuissance.
L is a library. A is an application using L, CA is a class, declared in A extending a class CL in the library L.
Untill recently, ...
0
votes
1answer
73 views
Compile-time VS run-time
I've being having a trouble, i have a jar, that a partner created to read from a webservice implementing some wsdl handling, this was created in netbeans.
So I want to use this jar, when i use it, i ...
0
votes
1answer
39 views
Runnable .jar or.exe file doesn't run correctly
I've created the application in java-eclipse that when pressing a random key on a keyboard it prints random .pdf file with a printer. The application work well when i run it in eclipse, but when i ...
0
votes
1answer
29 views
Running a JAR file, or a JAR converted to EXE will result in a Malware Message
When i'm/others is running the JAR or the converted JAR to an EXE on they computer, they get an Malware virus message, from they antivirus program, saying the file is dangerous.
What is it, that is ...
1
vote
1answer
105 views
How to run a .JAR file with Delphi [closed]
Me and a friend have being trying to do this for a while and regardless of how hard we searched and tried; we just couldn't do it.
But what we are trying to do is Run/Execute a .jar file from delphi ...
0
votes
2answers
35 views
Getting Path of File Inside Jar
I'm trying to access an image located inside of a running jar.
Here is my code:
Image image = Toolkit.getDefaultToolkit().getImage(
getClass().getResource("/res/sprites/"));
The code ...
0
votes
0answers
28 views
Cannot build runnable jar file with ant or eclipse?
I know this question is common, but actually I do many research for it and it still does not work. Please help me. I use NetBean, Eclipse and Ant script, but it does not. I can use the "run" command ...
1
vote
2answers
26 views
Including jar files into library project
I am developing small library for android application. My library having some dependencies for that i want to include some external jar file into my library project so that user of library need not be ...
0
votes
0answers
12 views
JVM Monitoring jar execution
I want to check the memory usage of a JAR that does some calculations. For this I want to use JVM monitor. When starting JVM monitor, I need to pick the JVM that is running my jar. But the problem is ...
0
votes
1answer
52 views
Simpliest way to add an attribute to a jar Manifest in Maven
Since the last Java update, I need to tag my applet jars manifest with the Trusted-Library attribute to avoid warning popup when javascript is communicating with the applet. (see ...
0
votes
1answer
39 views
Runnable JAR file doesn't run after export in Eclipse
I have the following hierarchy :
When I export the project into a runnable JAR file (32 bit platform) , the file
is created successfully , but when I try to run it , nothing happens - no response ...
0
votes
1answer
30 views
jar file not properly finding the files
I have spent the past 3 nights going crazy trying to find an answer to this.
So I have a java program and I want it to be in a jar format and I want it to be able to read in text and image files.
I ...
1
vote
2answers
40 views
Keeping Project JAR Files Up To Date
When using multiple APIs in a single project, the JAR files required for each API are added to the project in addition to other needed libraries such as Apache Commons, logging, etc. that are already ...
0
votes
1answer
130 views
Generated Gradle Build Files for my project; Now getting noclassdeffounderror when I run
I recently generated Gradle build files for my Android application project in Eclipse for the sake of testing Android Studio. I went back to Eclipse and try to run my project. However, now none of my ...
0
votes
1answer
21 views
Java. Read folder from 'resources' while executing JAR: URI is not hierarchical
I put a folder 'profiles' (contains language profiles, which I need to use when executing JAR) into 'resources' folder. To read it I write:
URL langProfilesURL = ...
0
votes
1answer
29 views
Add resources to a JAR
I want to include resources fils (images, textfiles...) in a JAR.
I added my asset folder to the classpath, so my program works fine when I run it in netBeans.
But if I build the project, I receive ...
-1
votes
1answer
59 views
My application don't run properly when packaged as a Jar
I am following file > export > runnable jar file to create a runnable jar file of my eclipse java project. when i run my application from eclipse, it works fine.
But when i run it from the ...
1
vote
1answer
39 views
Integrating another android app inside my own application
I'm a total newbie to Android app development, so do excuse the lengthy explanation. Anyways, I have already developed my application (running successfully). Now, I want to integrate an open source ...
0
votes
1answer
53 views
JDBC connection does not run with .jar file, but with eclipse project
I'm really looking at a mystery here. I created a Java program in Eclipse and established a JDBC connection. The code is the following:
import java.sql.*;
public class Login {
public static ...
1
vote
1answer
18 views
Maven - Error trying to adding arbitrary classpath in Manifest.mf
I have this code to add my classpath:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
...
0
votes
3answers
34 views
java returning “NoClassDefFound” error; thinks -jar option is a runnable class
java -jar <Name of executable jar>
Results in my 1.6 jvm returning a NoClassDefFound error for 'jar'. Why isn't it recognising -jar as an option and not a class to run?
jar structure:
The ...
1
vote
3answers
52 views
What's the difference between the following two ways to create an executable JAR?
I was reading up on how-to create a jar file in java , so the way is like this :
jar cmf mainclass.txt example.jar *.class
I was curious about why we use *.class rather than specifically saying ...
0
votes
1answer
42 views
JAR File Fails - Maven & Hibernate Project
I have an app that do simple CRUDs ops (Create, read, update, delete with MySQL).
This app is with maven & hibernate. Everything is fine when I debug and execute the app into the IDE (eclipse).
...
0
votes
1answer
70 views
eclipse can't import library inner class for android application
I've added a library to my android project by putting .jar file into /libs folder and by adding Project->Properties->Android->Add. The problem is that I can't import one static public inner class. ...
0
votes
1answer
30 views
how to get classpath from mp3 within a jar file
I've got a problem with my classpath within a jar file. With pictures
getClass().getResource("picture.png") works fine. But I need to get a mp3 file.
If I put in the whole path outside of the jar file ...
0
votes
4answers
50 views
Being able to run java application on different computers without JDK
How can I send my java application to a friend without having to send the entire project and being dependent on him having JDK? I'm aware of the .jar-file's existence, but I don't know how to proceed. ...
1
vote
1answer
24 views
Exporting multiple jars in Eclipse
I want to export different packages of my Java project into different JAR files.
The packages are like this:
com.example.package
com.example.otherpackage
...
What I want is export it to some ...
1
vote
1answer
37 views
Jar not using contained classes or namespace collision
I'm using netbeans to generate a web service client from a WSDL doc.
The client works fine until we put it in our production environment. The jars were generated against javax.ws.xxxxx classes from ...
0
votes
0answers
24 views
BIRT NoClassDefFoundError
I have been searching the web for a while now and no solutions found have been working out for me. So, I turn to you.
I get a java.lang.NoClassDefFoundError when I try to integrate the API of BIRT ...


