📄 httplocalizedresources.java
字号:
// HTTPLocalizedResources.java
package com.wrox.httpserver;
import java.util.*;
/**
* This class encapsulates localized messages
*/
class HTTPLocalizedResources {
private ResourceBundle resources;
/**
* Constructs a HTTPLocalizedResources object from a properties file
*/
public HTTPLocalizedResources(String propertiesFile)
throws MissingResourceException {
// Load the localized messages from the properties file
resources = ResourceBundle.getBundle(propertiesFile);
}
/**
* Returns localized message with given key.
*/
public String getResourceString(String res) {
String str;
try {
str = resources.getString(res);
} catch (MissingResourceException mre) {
str = null;
}
return str;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -