httplocalizedresources.java

来自「21天学通java的示例程序源代码」· Java 代码 · 共 36 行

JAVA
36
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?