Tagged Questions
0
votes
0answers
17 views
JAXBProject is very slow after export into a jar file
I have a JAXB Project with some WSDL clients, if I test this WSDL clients in eclipse it works fine, but if I export JAXB Project into a jar file, the first connection its very slow (its takes about 10 ...
0
votes
1answer
21 views
Java Cup IllegalAccessException exporting jar
I'm trying to export my java cup project from eclipse as a runnable jar, the export is done correctly but when i try to run it i get the following error
Exception in thread "main" ...
-1
votes
1answer
19 views
How to make Java executable Jar file of Webdriver project
I am new to Java and Webdriver (Web QA automation framework). I have wrote a webdriver script which opens firefox browser. Open google.com. Make some searches and finish. N
I have created this script ...
0
votes
2answers
9 views
Eclipse type declaration points to wrong package
In eclipse when I control click or select an object an hit "F3", I get directed to a class in a jar instead of the package in eclipse.
Of course the jar content has the same class as the package in ...
0
votes
1answer
20 views
jar file not working for imports in Eclipse
I am following a tutorial from AndroidHive on how to login to Twitter from my app.
The tutorial uses the twitter4j library, so I download it from here and save the zip file to my desktop. In my ...
1
vote
1answer
21 views
Eclipse JAR at runtime
I'm importing several JARs all sitting in the same directory. When my program runs I'm able to access the classes in several of those JARs, no problem. So my classpath is fine (I assume). But there is ...
0
votes
0answers
17 views
Why some JAR are required to be in lib directory while some can be added as User Library?
Why is that necessary for some JAR to be in lib directory while some can be added as User Library while using Eclipse??
Some times I have to put all the jars in lib directory while some require them ...
0
votes
2answers
29 views
Load image from jar and outside it in eclipse
I have a structure like this in my java project in eclipse:
src/com/myprogram/.../foo.java
res/icon.png
.project
...
I Know that you can load an image from inside a jar with
...
0
votes
1answer
47 views
I have an external executable jar file that I wish to edit the java files in it with Eclipse
But when I add the external jar file to a project it doesn't put the java files in the src. What do I do?
0
votes
2answers
32 views
Eclipse: updates to referenced library .jar not picked up
I have 2 Java projects in my Eclipse workspace, as follows:
One is a library of code that automatically creates a .jar file whenever it builds.
The other is an application that uses classes in that ...
0
votes
3answers
32 views
javax/mail/MessagingException in jar file but same code working in eclipse
I am creating a sample project to send a mail. When i am trying to send a mail using eclipse it works fine. But as soon as i make a .jar file of the code it created the jar file but when i run the ...
1
vote
2answers
26 views
Failed to load Manifest attribute - eclipse
I am trying to export jar of a project via eclipse
when I run that jar it gives error "failed to load Manifest attribute"
although I give main-class-name in manifest file but it is not working
I ...
0
votes
0answers
29 views
Exporting .jar to use in Unity with 3rd-party libs included: NoClassDefFoundError
This seems to be a common issue when exporting jars with Eclipse. Now, my context.
I'm attempting to write Java plugins to use in Unity applications. When I did a simple plugin with no external ...
0
votes
0answers
44 views
Java web service sharing a jar file on the Tomcat server
Busy developing Java Web Services using Eclipse. We have different environment, we have to deploy each web service on. And each environment has there own unique Environment variables.
I trying to ...
0
votes
0answers
6 views
opnecsv.jar is not copying the last row properly
I am trying to copy my resultset in a .csv file using opnecsv2.3 jar.
it runs fine on my system using eclipse, but when i deploy it on server, it copies everything correctly but is not able to copy ...
0
votes
1answer
17 views
Add Jogl documentation to User Library
I created Jogl 1.1 user library like the follow -
It's work well but it hasn't documentation .
Which file should I point to its path under gluegen-rt.jar >Javadoc location and jogl.jar ...
0
votes
1answer
28 views
Adding a sample pluggin into eclipse
I have a plugin that i want to integrate with my eclipse IDE . The plugin as downloaded from the internet consists of two jar files namely :
org.eclipse.dg.ex.core_1.0.jar
...
0
votes
1answer
143 views
Google Play Game Services leaderboard - Unable to set jars up correctly in Eclipse
I am trying to set up my project in Eclipse to implement the new Android Play Services. You can see in my below 3 screenshots that BibleTriviaLite is my project and then BaseGameUtils and ...
0
votes
0answers
19 views
How In Ant got all **/*.wsdl (one by one)in specific directory and find it's duplicates in another?
I create file when I unzip jar files from specific directory. Directory has sub tree directories, in which I seek for .wsdl extension and copy them to another folder.
From now I don't know how ...
0
votes
1answer
45 views
Get path of library - Java
So I'm making a new instance of javafx Media class.
new Media("file://" + <path>);
The problem I'm having is I need to make the path to a class folder ("/music/launcher.wav") attached in ...
0
votes
1answer
51 views
How do you open, view, and edit .jar class files in eclipse?
I would like to change the background color of a few .class files in the jar.
When I try to open it in eclipse it says the .jar file has no attachment.
I'm still a newbie and just trying to learn ...
0
votes
1answer
43 views
How do I change the destination directory of Ant's fileset command?
I have an Ant buildfile for a Java library. It looks something like this:
<project ... ><target ... >
<jar destfile="C:\path\to\export.jar">
<manifest> ... ...
0
votes
1answer
45 views
eclipse does not find sound path
In this code
in = new FileInputStream(getClass().getResource("/sonidos/inicio.wav").toString());
Eclipse said that:
java.io.FileNotFoundException: ...
1
vote
1answer
43 views
JAR file behaving differently in a different place in file system
I have project called test in Eclipse which I want to export into Runnable JAR file. During the process of exporting the project, when I choose as a location of JAR file the subfolder of test folder ...
1
vote
1answer
26 views
How to make a JAR from two projects?
I have one project PROJECT1 (containing Main Class for MANIFEST), which is using classes defined within another project, PROJECT2. When I create JAR by exporting PROJECT1 into JAR and then run it, it ...
0
votes
1answer
25 views
How to include VM arguments into JAR file?
I have an application that is showing splash screen when loading it. It all works perfectly in Eclipse environment, but when I try to export it as (Runnable) JAR file, it does not. I guess it has a ...
0
votes
3answers
39 views
The purpose of JUnit test?
In order to create a properly running JAR file from my Eclipse project, does the JUnit test of the project have to be without any errors and failures? Or it is not neccessary?
-1
votes
1answer
19 views
How to release my Eclipse project? [closed]
I want an advice from you. I want to release my beta application in Eclipse which is a part of my thesis and is intended to be put on the disc (CD/DVD) and sent to my professor. The questions are:
1. ...
0
votes
1answer
45 views
My JAR doesnt work as when launched by eclipse
My program uses large text files (45MB) to operate and runs fine in eclipse. After being exported into a jar, it does not work properly when accessing the large source files. There are no problems ...
0
votes
1answer
44 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
80 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
...
0
votes
1answer
23 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
1answer
64 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
340 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
113 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 ...
0
votes
1answer
149 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. ...
1
vote
1answer
38 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 ...
0
votes
0answers
70 views
Android 3rd party JAR libraries quit working with latest Android tool updates (22.0.0.v201305140200--675183) [duplicate]
I had the strangest thing happen today: I allowed my Eclipse for Mobile Developers (v Juno SR2, which is running on 64-bit Windows 7) to download and install the latest Android updates today. Went ...
0
votes
1answer
37 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 ...
1
vote
3answers
39 views
Finding a file in a root directory of jar exported from Eclipse for JUNIT testing
In my Eclipse JUNIT test I have several text input files that are opened by
new BufferedReader(new FileReader(inputFileName));.
They are placed in the root directory of the project After ...
0
votes
2answers
67 views
Running Scala Jar
When I package my scala code into a jar using Eclipse, I am unable to run said jar file. I've got:
object Hello extends App{
println("Hello World!")
}
and:
public class Runner {
...
-2
votes
2answers
72 views
How to add jar library into jar
I created a library which uses the bluecove library. It works well but when I export the library into jar, and include into the other project, it looks that it can't found the bluecove class files.
...
1
vote
1answer
423 views
Why do I get Link of class failed importing a jar into an Android project in Eclipse?
In Eclipse I wrote a package of classes for use with Android and tested them in an android project, keeping the test code in a second package. Then I used the command line to create a jar file from ...
0
votes
0answers
15 views
Exporting a Small Applet to Launch
This feels like a really simple question, however, in every instance that I've looked for and found an "answer" it was far beyond my level of comprehension. I'm relatively new to Java, only having ...
0
votes
2answers
48 views
Application only works in Eclipse
I'm doing a college project using Java and Eclipse. The app works perfectly in Eclipse, but when I export it as Runnable Java File it doesn't work. No any error is shown, and nothing is opened.
Do ...
1
vote
1answer
30 views
Preventing Test Classes from being exported into jar file
I am trying to build a Runnable jar file using the Eclipse>Export>Runnable Jar File option.
Things are fine except that it is also exporting my test classes
I am only selecting classes from my ...
0
votes
1answer
43 views
How to make jar files that draw from a source folder
I've been wanting to make executable jar files with java lately. When executing my code with Eclipse it works perfectly. But when I use Eclipse to export the same code as a runnable jar, Most of my ...
2
votes
1answer
67 views
How to export a JAR file including my classes and other jar files (extracted) using Eclipse?
Kind of a "simple" question here, but it seems complicated to do such a thing using Eclipse.
I have a "utils" project, in which I have developped "common" code like xml parsers, loggers, maths ...
0
votes
2answers
136 views
How to create a executable jar file for Testng and the runnnig point should be the Xml file
I am currently working on the selenium web driver and testng on Eclipse IDE. I usually run the test from the XML file that i have created which runs all the methods in the eclipse.
Now i want to ...
0
votes
0answers
37 views
How to explain the different behaviour of spring in eclipse and standalone application
We have a web application using spring framework which works well. We try to use the same spring context in a standalone application built with maven. We managed to get the context by launching the ...





