Tagged Questions

0
votes
1answer
32 views

ResourceBundle.getString removed backslash character

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").getStrin …
0
votes
2answers
55 views

How to externalize a Spring MessageSources bundle outside the WAR

Hi, I have to externalize the Spring MessageSources bundle for i18n support (properties files) outside the classpath in order to modify properties more easily. How can I do that ? …
1
vote
1answer
858 views

JSF Validation not finding custom ResourceBundle class

Hello, I have a custom ResourceBundle class org.example.web.UILabels.java which works well in running code but the JSF editor in Eclipse is not finding it, I assume the editor/val …
0
votes
1answer
113 views

Spring: can ResourceBundleMessageSource be configured to load properties in xml format

As you may know, properties are usually written in files in key=value format but can also be written in XML format. The question is if (and how) can Spring's ResourceBundleMessage …
0
votes
3answers
655 views

Spring MVC Webapp: Where to store paths to common images?

I'm building a Spring MVC web application with Tiles/JSP as the view technology. Previously I stored the paths to common images in class Common: public final static String IMG_BR …
0
votes
4answers
1k views

java - how to load a resource bundle from a file resource?

I have a file called mybundle.txt in c:/temp - c:/temp/mybundle.txt how do I load this file into a java.util.resource bundle? The file is a valid resource bundle. This does not …
6
votes
5answers
1k views

How do I specify values in a properties file so they can be retrieved using ResourceBundle#getStringArray?

I am trying to use ResourceBundle#getStringArray to retrieve a String[] from a properties file. The description of this method in the documentation reads: Gets a string array f …
3
votes
3answers
136 views

Is there a tool for non-developers (translators!) to edit resource bundles?

What we do in our company to let our software be translated by external translators is ... well .. how to put it... cvs co someModule ant translation.export (behind this target t …
3
votes
4answers
673 views

Locales and ResourceBundles in a plugin-based program

We need to start adding internationalisation to our program. Thankfully not the whole thing yet, just a few bits, but I want the way we do it to scale up to potentially cover the w …
1
vote
2answers
343 views

How to override some Resources from a PropertyResourceBundle.

I have an exsisting Java/JSF website all the text on the screen is coming from property files via <f:loadBundle basename="org.example.applicaltion" var="applicaltion" /> whic …
6
votes
3answers
783 views

In Java, how to reload dynamically resources bundles in a web application ?

We are using fmt:setBundle to load a resource bundle from a database (we extended the ResourceBundle class to do that). When we modify a value in database, we have to reload the we …
2
votes
4answers
1k views

How do I use ResourceBundle to avoid hardcoded config paths in Java apps?

I'd like to eliminate dependencies on hardcoded paths for configuration data in my Java apps, I understand that using ResourceBundle will help me use the classloader to find resour …
0
votes
2answers
1k views

ResourceBundle from Java/Struts and replace expressions

If I have a Resource bundle property file: A.properties: thekey={0} This is a test And then I have java code that loads the resource bundle: ResourceBundle labels = Resource …