JVM Languages
jqa0901.txt
Associated article: What Are Resource Bundles and What Do They Have to Do With Internationalization?
Tags: JVM Languages
Published source code accompanying the article by Jared Jackson in which he examines resource bundles, which provide the means for utilizing locale-specific information without having to maintain multiple versions of code for those various locales.
Java Q&A
by Jared Jackson
Listing One
package com.myCompany.myProject;
import java.io.*;
import java.util.*;
import java.text.MessageFormat;
public class Translator {
// The Resource Bundle super class
private static ResourceBundle resource_bundle;
// The current Locale from ...


