请问这个问题如何解决
lzj34 2005-11-25 06:06:13 import java.util.*;
public class Property{
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( ));
}
}
运行错误如下:
WARNING:Default charset GBK not supported,using ISO-8859-1 instead
Exception in thread "main" java.lang.NoClassDefFoundError:Property/class