我看有人在eclipse上能自动生成一个message.properties文件和其对应的import java.util.MissingResourceException;
import java.util.ResourceBundle;public class Messages {
private static final String BUNDLE_NAME = "com.db.messages"; //$NON-NLS-1$ private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
.getBundle(BUNDLE_NAME); private Messages() {
} public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
} catch (MissingResourceException e) {
return '!' + key + '!';
}
}
}这个类,请问是怎么弄的?谢谢大家了!