A Jar file which can be executed similar to an .EXE in Windows.

learn more… | top users | synonyms

0
votes
0answers
30 views

Image in Jar file Causing Problems

I have a program that I am making that has a JFrame and two JPanels. One JPanel has an image in it that it paints, and a bunch of JButtons. When I run it from Eclipse, it works fine; the image appears ...
0
votes
1answer
28 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 ...
0
votes
1answer
19 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
3answers
36 views

Include A Properties File With A Jar File

I've written a small application. I've put the database specific information in a properties file. db.url=jdbc:mysql://localhost:3306/librarydb db.user=root db.passwd=pas$w0rd When I build the ...
1
vote
1answer
26 views

SAX parsing through a jar file declares XML document invalid

The picture is self explanatory. When I validate the document using identical process in CMD, the document is declared valid. It is valid when checked manually. The jar file generates this ...
0
votes
1answer
27 views

Exporting JAR from Eclipse

I've created a SWT application using eclipse. In the application I make use of Images with in the project. Now I build the jar file and run it in the command line I get the following error: Caused ...
0
votes
0answers
19 views

Create and distribute .Jar files for android in Eclipse

In android I need to create a library file(.Jar file) to distribute it to third party people to integrate that functionality within their android apps. Bit struggling of deciding what the best ...
0
votes
5answers
44 views

Running a .jar file in a command prompt from double click

I'll start of by saying Im on windows 7. I have created a .jar file which executes fine from the command line using the - java -jar myJar.jar approach But what I'm after is to be able to double ...
-1
votes
2answers
58 views

Connect a Swing application (client) to a servlet [closed]

I have to check the login credentials in my swing application at the client side which is invoked by an executable jar file. Once the details are filled,it check in the servlet in the database. My ...
1
vote
3answers
86 views

Java exception- Exception in thread “main” java.lang.NoClassDefFoundError: net/sourceforge/tess4 j/Tesseract

I am try to make things works with tess4j (OCR algorithm), and i m using this code: import java.awt.image.RenderedImage; import java.io.File; import java.net.URL; import javax.imageio.ImageIO; ...
0
votes
1answer
57 views

Java- export to jar- i/o problems

I work on Eclipse (Juno with JDK7), and the program runs (on Eclipse) fine. My problematic lines are: URL imageURL = new URL("http://www.idautomation.com/ocr-a-and-ocr-b-fonts/new_sizes_ocr.png"); ...
-3
votes
0answers
22 views

How can I run SVM on Hadoop?

I have tried to run SVM on my Hadoop server but it does not work. The following two links from code.google.com are what I have done with. https://code.google.com/p/cascadesvm/downloads/list ...
0
votes
0answers
32 views

OpenAL error with Java Executable Jar File

I am programming a game in eclipse using OpenAL for sound, and when I play it within the IDE it runs smoothly. As soon as I export it as an executable jar file and try to run it from the system, the ...
0
votes
0answers
26 views

Getting File permissions error when exploding the cucumber-jvm.jar

I am trying to create an executable jar for functional tests by exploding the dependency jars, using gradle task of type Jar. Cucumber-1.1.3 is one of the dependencies. I am using gradle 1.1 with JVM ...
0
votes
1answer
36 views

How to run TestNG tests from main() in an executable jar?

I have an executable JAR which contains all dependencies and test classes. I've confirmed that the main() method is called when I execute the jar. I'm trying to add code to main() so that I can run ...
1
vote
2answers
64 views

Why exported runable jar of spring project not works in another system

I have created executable jar for spring project through eclipse. It worked as I expected on my system. but when I am trying to execute same jar on another system, it does not work. it throws some ...
1
vote
1answer
30 views

Trouble deploying jar file with images

I am trying to deploy my Java GUI as a runnable jar file. The problem is that none of the images or even the shapes I've created with Swing & AWT show up when I run the jar file. Can anyone tell ...
-2
votes
0answers
40 views

I can't get my game to work when exporting as an executable jar

It works fine in both netbeans and eclipse, but when I try to export it in eclipse I get the message: JAR export finished with warnings. See details for additional information. Exported with compile ...
-1
votes
1answer
25 views

executable jar slow response [closed]

I have a strange problem with my executable jar. Its really slow when ran in Unix machine compared to the response time in Eclipse IDE(windows). I have the same java version(jdk1.6.0_18) in both ...
0
votes
0answers
45 views

How to use Apache Commons Daemon with Cross-Platform Service?

I have a Java daemon (system service running 24/7/365) that needs to deploy as an executable JAR, however I would like users (on Windows, Linux and Mac alike) to be able to start/stop the application ...
1
vote
0answers
37 views

JDBC integrated security with jar

I found a lot of thing about SQL Server integrated security with JDBC 3.0 but i cannot solve my problem so here is my problem: I have an application with a JDBC connection using integratedSecurity. I ...
0
votes
2answers
41 views

Executing jar issue - uncaught error fetching image

I've made an audio player and the jar was made with netbeans. To load the images I've used: ClassLoader cl = this.getClass().getClassLoader(); URL playerIconURL = ...
-1
votes
2answers
35 views

open pdf file located in a ressource folder

I'm trying to open a pdf located in a ressource folder with my application. It does work on the emulator but nothing happens when I try on the exported application. I'm guessing I'm not using the ...
0
votes
2answers
27 views

Want to Make a Jar file

I've made a java application(it extends JPanel) and want to make it into a jar file.I have BlueJ and I used it to do so but after I make the jar file it doesn't open. Can anyone help?
1
vote
1answer
70 views

how to create a runnable jar file from command line similar to eclipse

I understood that eclipse generates a runnable jar file with all library .jar files extracted and included in the jar file. How do I do the similar this while creating a jar file manually from command ...
0
votes
1answer
34 views

I am not able to set the path of the class file which I am adding in the jar through code

public static int compileModifiedClass(String ModifiedFile) { JavaCompiler compiler = ToolProvider.getSystemJavaCompiler(); int result = compiler.run(null, null, null, ModifiedFile); ...
-1
votes
3answers
101 views

Optimized Permutation Code in Java

This is a code that I got from internet. import java.util.ArrayList; import java.util.Calendar; import java.util.Collection; import java.util.HashSet; import java.util.List; import java.util.Set; ...
0
votes
0answers
14 views

how should the yaml be generated when we programatically create a java class to deploy in app engine?

is there any possibility to programatically create an java classs which can deploy a project in the google app engine.if so the generation of yaml should also be done as its mandatory while uploading. ...
0
votes
0answers
22 views

using spring jdbc project jar inside a liferay portlet war

I have done a backend project creating DAO and services using spring jdbc which should call jdbc.xml to instantiate its beans. Now i exported a jar file out of it and deployed it in a liferay portlet ...
1
vote
2answers
87 views

Jar file giving exception [closed]

i have created jar file that run successfully on cmd like this: start javaw -Xmx1024m -jar JavaEdit.jar My application is running by double click but when i perform a button click it gives ...
0
votes
0answers
64 views

Certain characters being displayed differently when program runs from JAR file vs class file

// EDIT: I did some more research and found this regarding changing the default encoding While it is possible to do so during runtime, it seems that you can only change the defaultCharacterEncoding ...
0
votes
1answer
57 views

Deploying war file in google app engine by creating a java class using the jar specific to deploy it

i have searched for various solutions in need of creating a simple java class with a deploy method. This deploy method should get the path of the war file and deploy it in app engine google account. i ...
0
votes
2answers
52 views

Properties file (user settings) inside a jar file

I have a Swing application I want to package as a jar file. I also have a properties file that I store user set properties in. Can I store this file inside the jar file and will the application ...
0
votes
0answers
54 views

BIRT on Runnable Jar

the problem is with the already made runnable jar. When in eclipse, the code compiles, BIRT prints my report in PDF and everything works fine. But when I try it from the runnable jar I get: ...
3
votes
4answers
129 views

Java Jar Combining several jars into one executable Jar

I am aware that to combine several jars and create one executable jar, I would need to use a tool like OneJar if I don't want to unpack the dependent jars. OneJar has its own custom class loader which ...
-4
votes
1answer
51 views

Adding Executable jar in Google web toolkit and run it as a Page

I have runnable jar with main method in it . I want it to convert it to AJax page by GWT .I dont have XMl file in the jar.
0
votes
1answer
90 views

How do I compile my code so that it becomes an executable Jar and can be opened and used on any computer?

I have this code that works perfectly when used in the scala REPL, but when I try to compile it using scalac, I get a bunch of errors. This is my code (too long to post here) - ...
0
votes
1answer
117 views

Run a jar file using windows scheduler

I have jar file which I want to run from windows scheduler in windows 7 I have Given the path of java.exe in path/script. and "-jar c:\abc\ab.jar" in arguments but it ends up with nothing, I have ...
-5
votes
1answer
55 views

JAR file is not opening in another system that i use [closed]

I created a jar file in my laptop and it runs fine in Command Prompt without trouble but when i use the same in my friend's laptop it shows and exception and the file does not run. But it's still good ...
0
votes
2answers
58 views

User preferences

I want to make a simple java program that creates a text file at somewhere. I want to let users choose the folder. But when I wrap it in jar file and send to others. Every time my friend runs it, it ...
0
votes
0answers
50 views

autowiring in executable jar file

my project works fine in eclipse, but when I'm trying to run it from executable jar file it fails with "nosuchbeandefinitionexception no matching bean of type found for dependency: expected at least 1 ...
0
votes
0answers
30 views

Eclipse export is not making a .jar file

I've tried to export mutiple GUI based programs usering Export -> Java -> Runnable JAR file -> Selecting class containing main method. Every time the folder containing MF does not contain a .jar ...
1
vote
1answer
88 views

Does Apache Karaf handle hot deployments of any JAR or WAR?

I am trying to see if I can refactor the architecture of a project I inherited, and am interested in Apache Karaf as a possible solution. Currently, we build an executable JAR for every single ...
0
votes
2answers
222 views

cannot set classpath with maven-assembly-plugin

I am creating console application. I want to have configuration files outside the jar file in conf folder and want to register this folder as a classpath for my application. I run mvn assembly:single ...
1
vote
7answers
88 views

execute jar without a main?

Can I execute a jar file without having a main class, in this way: java -jar my_jar.jar -getX arg1 arg2 ... Knowing that I have a method called getX with takes arg1 arg2 ... as arguments. Any idea? ...
-1
votes
1answer
67 views

NullPointer Exeption while read audio files

I made a program to read audio files. At first I did it with absolute path because it's easyer to develop. Then I cahnge it to relative path because I want to compress it to a *jar. So I code this ...
-1
votes
1answer
110 views

File association using my executable jar file

I have assigned an extension name for my files called *.XSCA. I would like to read the content of this file when the user click on it using my executable jar file to open it. How can I do that?
0
votes
0answers
71 views

How to package external jars to runnable jar with maven

I use a runnable jar which classes make use for example of a mysql-connector.jar and a log4j.jar. How do i pack these external jar's into the runnable jar? Or dont i have to do this anyway and i can ...
3
votes
1answer
68 views

Why behavior for Java application different when double clicked and command prompt

I have a java application that somehow has a different behavior when launched in windows by double clicking the jar file compared to launching it using the command prompt. The behavior that i'm ...
0
votes
1answer
162 views

Viewing .ser file obtained by extracting a .jar file

I have a .jar file whose name is stanford-parser-2.0.4-models. After extracting it, what i got is englishPCFG.ser file. Can someone please suggest how to view the content of this file because with my ...

1 2 3 4 5 12