Discussions
Categories
- 197K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 556 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.3K Development
- 17 Developer Projects
- 139 Programming Languages
- 293K Development Tools
- 110 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 158 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 468 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
jar does not open java swing form

Hi,
I am a learner.
I am using Java 8.
I have been working through some tutorials and have successfully built a number of moderately complex projects.
The tutorial I followed for the jar was this
https://www.javatpoint.com/how-to-make-an-executable-jar-file-in-java
I have followed it precisely and double checked every element.
My question is this, I am generating a .jar by creating a .MF file which identifies the main class and find that in some cases it works, calling the main works in the same way as running manually from command line, but in other cases it doesn't - I just get a brief progress on the cursor and then nothing happens.
MF FIle Content
-----------------------
Main-Class: PBCSControl
Some of the 'does not work' is java swing forms, but some of the swing forms do.
All of the swing forms work okay when manually run from command line.
I do not see any error, log file etc either when creating the jar or when running the jar.
Is there anything I can do to diagnose why it is not working for me, or anything special that I need to do to generate the jar file for a swing project?
edit: I found this by manually invoking the jar from command line instead of double clicking the file; -
c:\Java\BusinessContinuity>java -jar PBCSControl.jar
Exception in thread "main" java.lang.NoClassDefFoundError: PBCSControl$1
at PBCSControl.main(PBCSControl.java:204)
Caused by: java.lang.ClassNotFoundException: PBCSControl$1
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 1 more
I don't understand why it is not class defined error, when I can run the .java file manually?
Best Answer
-
Hi,
I had similar on a client site where the local techies gave us such limited access that we could not use java as we should.
A workaround we found was to call the jar via a .bat and use the .bat as the shortcut, the .bat explicitly pointing to the elements along these lines; -
echo off
"C:\Program Files\Java\jdk1.8.0_144\bin\java.exe" -classpath c:\Java\MyJavaJarIsHere;c:\Java\BusinessContinuity\MyJar.jar;lib/* MyJar
This worked for me, I am sure it is far from best practise, it was a sub-optimal workaround adopted because of sub-optimal local IT...
Answers
-
Hi,
I had similar on a client site where the local techies gave us such limited access that we could not use java as we should.
A workaround we found was to call the jar via a .bat and use the .bat as the shortcut, the .bat explicitly pointing to the elements along these lines; -
echo off
"C:\Program Files\Java\jdk1.8.0_144\bin\java.exe" -classpath c:\Java\MyJavaJarIsHere;c:\Java\BusinessContinuity\MyJar.jar;lib/* MyJar
This worked for me, I am sure it is far from best practise, it was a sub-optimal workaround adopted because of sub-optimal local IT...
-
Thank you, this worked for me also!