• 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
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

UnsatisfiedLinkError

 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
- This is the program:
public class HelloDll
{
public static void main(String a[])
{
String lib_dir = System.getProperty("user.home");
System.loadLibrary("jawt");
System.out.println("loaded..");
}
}
- When i am executing from Netbeans IDE, it runs
- But i am getting the below error when i try to run from command prompt
- Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Program Files\Java\jre1.6.0\bin\jawt.dll: Can't find dependent libraries
- Even if i get output in my system, it gives same above error in some other system
- Please help
- All the best
- Thanks
 
Ranch Hand
Posts: 1970
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why on Earth would you want to do System.loadLibrary() on a DLL that's in the JRE?

Do you understand what System.loadLibrary() is for?
 
Right! We're on it! Let's get to work tiny ad!
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic