• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

How to Include Zip files

 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I'm trying to use a JAR file that I created in Netbeans in my Eclipse project. The layout of the Netbeans files are the following.

MyJarFile.jar
/lib/swing-layout-1.0.3.jar

Based on documentation I was told that I could zip up these files and then include them in my eclipse project but that doesn't seem to work. If I try to import a class from MyJarFile.jar Eclipse doesn't understand it. I added the zip via Java Build Path > Libraries > Add External jars. What am I doing wrong ?
If I build the JARs into 1 jar file I can import and call my class but nothing seems to happen and no exceptions are thrown. If I try calling the JAR file ( that includes both JAR files ) in Netbeans I get the following exception:

Exception in thread "main" java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$Group




Thanks In Advance

 
author
Posts: 23958
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

I added the zip via Java Build Path > Libraries > Add External jars. What am I doing wrong ?



That feature configures a project to use a jar file (that contain classes). It is not used to import jar files (that contain other jar files).

Henry
 
Jason Wylde
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would however use Java Build Path > Libraries > Add External jars if I wanted to include other JAR files in my build path correct ?
 
Marshal
Posts: 80124
416
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sound like an IDE-specific problem. Moving thread.
 
Forget Steve. Look at this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic