摘要:
import java.io.FileInputStream;import java.io.FileOutputStream;import java.util.Properties;public class PropertiesTest { public static void main(String[] args) { Properties prot=new Properties(); try { prot.load(new FileInputStream("test.txt")); int num=Integer... 阅读全文
posted @ 2012-06-14 19:07
单行线
阅读(144)
评论(0)
推荐(0)