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

📄 httpgmttimestamp.java

📁 21天学通java的示例程序源代码
💻 JAVA
字号:
// HTTPGMTTimestamp.java

package com.wrox.httpserver;

import java.text.*;
import java.util.*;

/**
 * Encapsulates a GMT timestamp.
 */
class HTTPGMTTimestamp {

  // Instance variable
  private Date currentTime;

  // Class variable
  private static SimpleDateFormat formatter = 
    new SimpleDateFormat("d MMM yyyy hh:mm:ss 'GMT'", Locale.US);

  /**
   * Consructs the current GMT timestamp.
   */
  public HTTPGMTTimestamp() {
    currentTime = new Date();
  }

  /**
   * Returns a formatted GMT timestamp.
   */
  public String toString() {
    return formatter.format(currentTime);
  } 
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -