0
votes
1answer
25 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 ...
0
votes
1answer
36 views

Music in .jar and BasicPlayer 3.0

Im working with Netbeans. Im using BasicPlayer 3.0 libs, to play a song, it plays fine when a run project with Netbeans BUT once a have my .jar file (with my lib folder and basicplayer3.0 jars) when a ...
0
votes
1answer
28 views

Trouble making an executable jar with lwjgl

When I try to make an executable jar in NetBeans I get this error: C:\lwjgl\lwjgl-2.8.5\res is a directory or can't be read. Not copying the libraries. The res folder holds files like jpgs and wavs ...
0
votes
1answer
38 views

Trouble making executable jar

When I try to make an executable jar in netbeans I get this error C:\lwjgl\lwjgl-2.8.5\res is a directory or can't be read. Not copying the libraries. Not copying the libraries.The res folder holds ...
0
votes
1answer
22 views

Export JAR in Netbeans with source

How can I export .jar file with source ? (.java) in NetBeans ? Can somebody help me ? thanks a lot
-1
votes
1answer
32 views

Trouble making an executable jar [closed]

When trying to make an executable jar in Netbeans, I get the error message saying that a folder is either a directory or can't be read, If needed I can provide pictures of the problem
-1
votes
0answers
101 views

JavaFX jar, boot time differences built by Eclipse vs Netbeans

quick question. Why is it that whenever I build a JavaFX application jar in NetBeans the startup time is drastically faster (2 seconds vs 20 seconds) than the very same jar generated by the equivalent ...
1
vote
1answer
410 views

exec not working with java 1.7.21, but in netbeans works fine

I made a little program and it worked fine, but now. First, it mux the xml chapter file in the mkv file, so we get a muxed mkv file. Some day ago I updated java to 1.7.21 and I think this is the ...
0
votes
1answer
49 views

How to distribute Java3d jar files with netbeans dist?

I have a java project on netbeans (Mac OS X) that uses Java3d. On the mac version of java distribution, java3d is already included. However now I want to distribute my application as jar for other ...
0
votes
2answers
118 views

How to compile JAR with library to apk

I get jar file with library from NetBeans and i cant convert it to apk. Converter ask JAD and JAR files. I have one main jar and two more in lib folder.
0
votes
0answers
28 views

Changing 3rd party jar files in netbeans

I have a project in Netbeans that I'm using some 3rd party jar files in. There's a library folder in my project that I can find the source .java files in, but if I make changes to those files the ...
0
votes
1answer
60 views

InputStream from getResourceAsStream results in NULL

InputStream input = Faculty.class.getClassLoader().getResourceAsStream("Resources\\Names.txt"); DataInputStream in = new DataInputStream(input); BufferedReader br = new ...
3
votes
2answers
35 views

What is included when making a jar file?

When I build my project (using the Netbeans IDE) will it only take the main class, or will it include the other classes in the project even though they are not explicitly declared within the code for ...
0
votes
0answers
80 views

How to create .jar file with netbeans and mysql backend

I've finished my project using netbeans and mysql as my back end ... Now, I've created the jar file using run --> clean and build Option ... While running the project via jar file, it is not connected ...
0
votes
1answer
101 views

Created a jar file and frames are not opening in jar while they open in Netbeans

I have created a project which has more than 2 ".java" files for each frame like home.java and control.java. There is a button in home.java upon clicking which opens the frame for control.java. This ...
0
votes
0answers
29 views

where is the nested metainf element in Netbeans build file?

Since I'm getting nowhere with doing this through the Netbeans interface, I'll look at going into the ant build details. The manual states: metainf The nested metainf element specifies a ...
0
votes
0answers
111 views

no default META-INF folder in Netbeans project — where to add files to?

How do I get Netbeans to add javamail.providers into the META-INF folder (which I manually added) without getting into the weeds in the ant build file? It's kinda odd, because manifest.mf ends up in ...
0
votes
1answer
61 views

Netbeans Clean And Build Jar file returns “Could not find main class” on Win XP

I write a small java app and makes a jar file using Netbeans, it works fine on my windows 7 pc but doesn't work on Win XP. It returns "Could not find main class" error. How do I solve this?
0
votes
1answer
42 views

Running testing class from jar package in NetBeans

I have like 30 Java classes and 1 class for testing in a jar package. To run the testing class, I need to create new NetBeans project , import all those 30 classes into /src , then import 1 testing ...
0
votes
1answer
76 views

Gettting “Class not found” error for many jars that I have included in classpath in Netbeans

I am trying to create a Java web app project in Netbeans that uses many external JAR files. I have created a lib folder and put all the JAR files there and I've added those Jar files to the build ...
0
votes
2answers
83 views

Netbeans - accessing a txt file so that app works outside netbeans - where to locate the file?

I am using netbeans; I can't figure out the way we are supposed to structure the project when we want to access a ressource file (e.g. a txt file that contains static info): Here is a simple example, ...
1
vote
2answers
98 views

Netbeans newbie— How to enable viewing info from a javadoc JAR file

I have some JAR files which I have to add to a Java project- for each of those JARs I also have separate JARs that contain Javadoc for each of the jars-- now I want to be able to view information from ...
0
votes
1answer
97 views

How to create an executable program from netbeans

I have just finished developing a small java application on Netbeans IDE. I am curious as to how I can convert that into an executable program from netbeans. So that there would be a short cut icon ...
0
votes
1answer
45 views

Adding new jar in Netbeans project after building the project

I am developing a application in Netbeans7.1. I am facing one problem to add new jar file from the app after building the app. As i know, when we build the project in Netbeans that will create a ...
1
vote
1answer
156 views

Can't configure logging for executable jar

This is similar to this other question, although I already put the logging.properties in the executable jar and doesn't work. I have a class (ReportGenerator) that has the following: Logger logger ...
-1
votes
1answer
48 views

Netbeans java creating jar

I need your help! I have some classes and I have to create in Netbeans a jar file for all of them. Someone have any idea? Thank you very much
0
votes
0answers
66 views

Jaas Netbeans:how to pack jars

I'm a new Jaas and Netbeans user. I have to implement a Secure Desktop application using Jaas. Is it possible using Netbeans or other IDE? What I have exactly to do? I'm trying to use NetBeans but I ...
0
votes
0answers
52 views

Read text from a pdf using PDFBox [duplicate]

I heard that PDFBox is the best java library for reading text from a pdf. So, I downloaded pdfbox-1.7.1.jar, jempbox-1.7.1.jar and fontbox-1.7.1.jar (I'm not sure the last two were necessary). I added ...
0
votes
1answer
34 views

creating a spashscreen and making it to stay for few seconds

I wanted a spashscreen to be shown, it should stay a few a seconds so the user can read the contents in splash screen. I have made all my .jar files into a single .jar file by adding the below code ...
0
votes
2answers
111 views

Where is fx:jar in NetBeans? - JavaFX

I am developing a standalone JavaFX application using NetBeans 7.2.1 and having problems with Autoproxy Configuration. In JavaFX documents I found this: 13.3.5 Disabling the Autoproxy Configuration ...
3
votes
2answers
743 views

How to Combine Multiple Jars into One?

I've read so many articles/explanations on this and spent too many hours, but everything is either too broad or specific. This question really only applies to an Applet I've made. It contains one ...
4
votes
1answer
102 views

Having problems with Manifest file when creating a JAR file in Netbeans

I want to create a jar file in Netbeans using the clean and build options. The jar file is created, but the manifest file is not updating; this means the main class is not set in the manifest file, ...
0
votes
0answers
53 views

How to load a jar from another jar in Java [duplicate]

Possible Duplicate: Classpath including JAR within a JAR I've got a jar contained in another jar, containing an important driver for MySQL. How can I notify NetBeans, or write java code to ...
1
vote
1answer
157 views

jar file created in netbeans not executing

I have written some GUI program in netbeans which makes use of swing and it's working fine.I created jar file by right-clicking on project>clean and build and all the resources are included in it from ...
0
votes
1answer
114 views

Java stops working when running a JAR

I am working on a project in which I use civil library for capturing image from webcam. There are some JAR and DLL files which I have put in a folder named lib. When I am running the project from ...
-1
votes
1answer
72 views

Git Deployment branch

I'm currently working on a java project on netbeans which currently is currently using git for version control. I am aware of the hooks on the server side and what not. I'm wondering if there is a ...
1
vote
1answer
90 views

Use .jar with referenced file paths in other project

I have 2 Java projects, one is a Web Project in NetBeans and the other is a Java Project in Eclipse. Just to know, the Java Project from Eclipse is used by the Web Project in NetBeans as a library ...
0
votes
1answer
133 views

When I attempt to run my .jar, I get a no library in java.library.path exception

I've looked through a number of posts, and tried what I've found to little success. Here's the setup: I wrote a program in Java, worked alright, but we needed to switch cameras. This camera is Twain ...
0
votes
1answer
177 views

java setting font in jar file

I'm trying to set a font "bilboregular.ttf" found in the resources folder under the root of the jar file. If i run from netbeans the font is set successfully, however if from the jar file it isn't ...
3
votes
1answer
48 views

Creating a java library

While I was working on a Java EE project I created some utility classes. I like to package them to a Jar and share it with the community. I have all the classes in one separate package. I'm using ...
0
votes
1answer
43 views

Directing path to desktop (Java) and publishing programs

I have a program that I want to publish that was built using Java. At the moment, the program creates folders / files in the directory: "C:\Users\Steve\Documents\myProgram" This obviously won't work ...
1
vote
1answer
57 views

Readable Directory in Netbeans but Not when Run from JAR File

I have been able to get resources to load in both Netbeans and a JAR file, such as ImageIcons, but today I am unable to "read" from same directory when running my program from a JAR file. I want to ...
-1
votes
1answer
217 views

couldn't find main class

I have 3 GUI forms main1.java main2.java main3.java with main methods. One in package1 other two are in package2. I have set the package1.main1 as main class in project configuration. After ...
0
votes
1answer
438 views

Why does my jar file work perfectly on my computer but not on another computer?

Recently I developed a fairly simple GUI application in NetBeans, and before I take the development any further I decided to test the application on another computer since I don't know a lot about ...
0
votes
1answer
59 views

netbeans manifest.mf is read-only because it is inside

I want to change contains of file Meta-inf/Manifest.mf . I try this: org.openide.filesystems.FileObject projectDirectory = project.getProjectDirectory(); FileObject modulesFileObject = ...
0
votes
3answers
109 views

I can't add epubcheck jar to my code in netbeans

In the folder Libraries I added the folder that contains the jar file of epubcheck (http://code.google.com/p/epubcheck/). But for some reason it does not work. I also added this line of code: import ...
0
votes
1answer
152 views

Include external jar in Netbeans Android project (nbandroid)

I have tried to add an external jar to a Netbeans Android project following the hint from this site: ...
0
votes
0answers
240 views

How do I update Hibernate library in Netbeans 7.2.1?

I've realised that Netbeans 7.2.1 comes with an obsolete version of Hibernate libraries (version 3.2.5) and I was wondering if there is any way to update it through the plugins manager. I mean, is ...
0
votes
1answer
46 views

Netbeans created JAR classpath

I have setup inside Netbeans to include a classpath pointing to a directory (properties) on my project folder as seen in the picture below. The folder contains the properties files that the project is ...
0
votes
2answers
132 views

Netbeans generating .jar file

When I clean and build, Netbeans generates a .jar file for my Java project, and it uses a "lib" folder which has all of my external Jar files that I use. Can I somehow tell Netbeans to package these ...

1 2 3 4 5