android_mt6572_jiabo/external/javassist/sample/evolve/WebPage.java
2025-09-05 16:56:03 +08:00

17 lines
429 B
Java

package sample.evolve;
import java.io.*;
import java.util.*;
/**
* Updatable class. DemoServer instantiates this class and calls
* show() on the created object.
*/
public class WebPage {
public void show(OutputStreamWriter out) throws IOException {
Calendar c = new GregorianCalendar();
out.write(c.getTime().toString());
out.write("<P><A HREF=\"demo.html\">Return to the home page.</A>");
}
}