您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

WebPage.java 429B

1234567891011121314151617
  1. package sample.evolve;
  2. import java.io.*;
  3. import java.util.*;
  4. /**
  5. * Updatable class. DemoServer instantiates this class and calls
  6. * show() on the created object.
  7. */
  8. public class WebPage {
  9. public void show(OutputStreamWriter out) throws IOException {
  10. Calendar c = new GregorianCalendar();
  11. out.write(c.getTime().toString());
  12. out.write("<P><A HREF=\"demo.html\">Return to the home page.</A>");
  13. }
  14. }