0
votes
2answers
51 views
Running a Java Class from a Jar thru a command line
I have a jar file with several classes which have static main methods. Can I execute them inside the jar from the command line? If not, can I execute them one by one?
3
votes
5answers
75 views
How do I find out what jar files are actually used when compiling a java project.
I'm currently passing a very large classpath to javac to compile a java project.
I know that a number of those jar files aren't needed.
Is there a simple way of finding out which …
6
votes
8answers
202 views
How to keep up to date on available Java libraries?
I've been writing java.io code verbosely for far too long, and stumbled onto Apache Commons IO last week. I've used a lot of Commons before, but never looked at IO, and now I feel …
5
votes
5answers
88 views
Downloading JAR files at runtime in Java
I am wondering if it is possible to have a Java desktop application, on startup, look to some URL, to see if it needs an update, and if so download necessary JAR files, and add the …
2
votes
4answers
80 views
How to delete file which is used/locked by windows in java
I have some application, which has ability to update itself. Its downloads the jar file from the net, and then tries to replace used jar to run this application by downloaded one.
…
2
votes
4answers
101 views
include dependencies into jar
Hi, is there a way to force maven(2.0.9) to include all the dependencies into jar file?
I have a project the builds into a single jar file. I want that the classes from dependencie …
0
votes
1answer
16 views
Eclipse (Pulsar) packaging: How do I incorporate other projects into my jar?
I have a JavaME project in Eclipse (Pulsar 3.5; Galileo).
I have another project with common code in it in the same workspace and this is referenced from my app.
When I choose 'p …
1
vote
2answers
59 views
eclipse: how to debug a Java program as a .jar file?
I use ant for creating .jar files in Eclipse. Works great.
I have a .jar file I am working on that expects the code to be in a .jar file (it looks for .properties files in the sam …
1
vote
2answers
46 views
Refactor packages in a Jar
I have a requirement that i need to load two versions of a jar at once. To avoid class path collisions I'd like to rename the packages of one of the jars. Then in source you could …
1
vote
4answers
64 views
Can I use the classpath to override a file in a jar that is being run?
I have a JAR file that contains an application as well as configuration files for that application. The application loads configuration files from the classpath (using ClassLoader. …
2
votes
2answers
65 views
Include jar file in Scala interpreter
Is it possible to include a jar file run running the Scala interpreter?
My code is working when I compile from scalac:
scalac script.scala -classpath *.jar
But I would like to …
0
votes
3answers
17 views
Jar file resource not available ?
My program has the following lines, works fine when run from Netbeans,
JButton Button_1=new JButton(new ImageIcon(Phone_Dialer.class.getResource("Dir_Icons/"+"Key_1"+Botton_Color …
0
votes
2answers
35 views
Directory list of JAR file within classpath
The typically method to reference a file contained with a JAR file is to use ClassLoader.getResource. Is there a way to get the contents of a directory within a JAR files (similar …
0
votes
3answers
81 views
creating a JAR file programmatically
I created a Jar file from my java code :
public void create() throws IOException{
FileOutputStream stream = new FileOutputStream(this.packagePath);
JarOutputStream out = new …
1
vote
1answer
37 views
PHP, shell commands, and jar files
Hey everyone,
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. …
