resourcebundle « character « Java Data Type Q&A





1. ResourceBundle.getString removed backslash character    stackoverflow.com

I tried to get a resource from a file path from a properties file. Property File:

info_path=c:\Info\output
Java:
String path = ResourceBundle.getBundle("bundle_name").getString("info_path");
Result: C:Infooutput I would need to set the file:
info_path=c:\\Info\\output
Is this the default behavior? or would it ...

2. How is character star handled in a resource bundle    stackoverflow.com

If we use "*" as part of the resource bundle, the character gets removed during the message formatting process (java.util.ResourceBundle). How are we supposed to escape this character?

3. ResourceBundle - French characters    forums.oracle.com

I have a Swing application that I want to internationalize. I.E. I want to have an English resource bundle, and a French resource bundle. I created the two resources files and I've placed them in the classpath, I then load the files like this ( for the French version ): ResourceBundle.getBundle( "DisplayStrings", Locale.FRENCH, this.getClass().getClassLoader() ); And the resource load properly, but ...