这个编程题也是java编程思想中的一道例题
import java.util.*;
/**
* The first Thinking in Java example program. Lists system information on * current machine. * * @author lizh * @author http://www.BruceEckel.com * @version 1.0 */public class Property { /** * Sole entry point to class & application * * @param args * array of string arguments * @exception exceptions * No exceptions thrown */ public static void main(String[] args) { System.out.println(new Date()); Properties p = System.getProperties(); p.list(System.out); System.out.println("--- Memory Usage:"); Runtime rt = Runtime.getRuntime(); System.out.println("Total Memory = " + rt.totalMemory() + " Free Memory = " + rt.freeMemory()); }} // /:~
找到这个java源文件的目录,然后再cmd下,进入到这个盘符下的这个目录中去,不能直接在cmd默认的盘符下敲javadoc命令,
下边的这个错误是我在cmd默认目录下直接敲的doc命令:
这是我在指定盘符下敲命令的结果:
结果生成了您的package.html等页面