• 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

resource bundle error

 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All, I hope this is the right forum to post this message.

I am trying to use the ResourceBundle class to get a properties file

my code looks like this



its command line invocation.

The properties file is in the same directory as this file.

I am using Eclipse IDE.

It is giving me this error



Exception in thread "main" java.util.MissingResourceException: Can't find bundle for base name example_export, locale en_US



example_export is the properties file.

Please let me know what I am missing.

Thanks
 
Ranch Hand
Posts: 148
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Eclipse is probably putting your class file in a different directory. For this to work the resource bundle needs to be in the same directory as the class, not the source (.java) file. I would try running it from the command prompt. Do a dir (I'm assuming you're using Windows) in the directory to verify that the class and the resource bundle are both present.
 
reply
    Bookmark Topic Watch Topic
  • New Topic