Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8431151
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T05:46:45+00:00 2026-06-10T05:46:45+00:00

Hello All, I am creating a ResourceBundle to load the property files. My file

  • 0

Hello All,
I am creating a ResourceBundle to load the property files. My file structure looks like

|
—Main

   |
    ----ResourceBundleLoad.java

|
–Resource

   |
    --- resourcebundle.properties

In normal when i put main class and the property file in same package means it retrieves all the property file values. If i separate both files means it’s not working. It throws java.util.MissingResourceException exception.

My code is

 private static final String BUNDLE_NAME = "ExternalizedLogMessages";
 private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);

Please suggest me how to solve this problem

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T05:46:46+00:00Added an answer on June 10, 2026 at 5:46 am

    I achieve this by using the class loader.
    the source is

     private static URLClassLoader resourceLoader= null;
    
    /**
     * Initialize class loader.
     */
    static{
        ClassLoader currentThreadClassLoader
         = Thread.currentThread().getContextClassLoader();
    
        //assuming that current path is the project directory
        try {
            resourceLoader
             = new URLClassLoader(new URL[]{new File(".").toURI().toURL()},
                                  currentThreadClassLoader);
        } catch (MalformedURLException e) {
            logger.error(e);
        }   
    }
    
    /**
     * Properties bundle name.
     */
    private static final String BUNDLE_NAME = "resource.ExternalizedLogMessages"; //$NON-NLS-1$
    
    /**
     * Resource bundle object.
     */
    private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
            .getBundle(BUNDLE_NAME,Locale.US,resourceLoader);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello all how can I create jar file of my project that is created
Hello all I am creating a horizontal menu for a site that needs to
I have tried all that i could to generate the R.java file but in
Hello all I am creating a report at work and for some reason am
Hello all you helpful folks @ stackoverflow! Best resources for Java GUI's? Looking at
I have a function creating a file for download like so: header(Content-type: application/octet-stream); header(Content-disposition:
Hello all, We are creating a dll on the fly for security, we are
I have 4 .c files hello.c , here.c , bye.c and main.c . One
I have 4 .c files hello.c , here.c , bye.c and main.c . One
I have 4 .c files hello.c , here.c , bye.c and main.c . One

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.