⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 httplocalizedresources.java

📁 21天学通java的示例程序源代码
💻 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 + -