• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

[Eclipse]: class Nodefound error

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
Im using Eclipse 3.0.
Im suffering from a problem. I have made a jar file with follwoing structure: test.jar : test\RSAKeyStore.class.
Now in my project i want to use it. MY project have bouth src folder and bin forlder.
proj\src\ - all java files that belongs to the project
proj\bin\ - all .class file wich is compiled from proj.

And imported in to the porject by including extenral jar files in build path.

Now in my one java file (int proj\src\prog.java) i want to create a RSAKeyStore object. But I cant, I get Exception, RSAKeyStore class is not found.
why ?? How can i use my class file in the proj.
I even tried to link as class folder, but still not working.

Can anybody help me..
Thanx
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Karan,
That means that Eclipse can't find the file at runtime. If you are using a Web or EJB project, you can solve this by adding the jar as a "java jar dependency" (in the properties menu.)
 
reply
    Bookmark Topic Watch Topic
  • New Topic