How can one use the ResourceBundle class in an applet to retrieve locale specific information over the Internet?
Location: http://www.jguru.com/faq/view.jsp?EID=139312 Created: Aug 31, 2000 Modified: 2000-08-31 12:25:45.391 Author: John Zukowski (http://www.jguru.com/guru/viewbio.jsp?EID=7) Question originally posed by Steve Barry (http://www.jguru.com/guru/viewbio.jsp?EID=138678 Resource bundle files are located relative to the codebase of the applet. For instance, if you place the applet files into a JAR file, and ask for a bundle with ResourceBundle.getBundle(“TrainingLabelsBundle”, locale); from the applet, you would place the TrainingLabelsBundle_* files in the same directory as a JAR file. They don’t have to be in the JAR file. The Internationalization documentation that comes with the JDK includes some guidelines that may prove helpful.