A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 清心玉质 中级黑马   /  2013-8-5 19:07  /  1074 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 杨兴庭 于 2013-8-7 13:32 编辑

        InputStream ips = new FileInputStream("config.properties");
        Properties props = new Properties();
        ips.close();
        String className = props.getProperty();

评分

参与人数 1技术分 +1 收起 理由
杨兴庭 + 1

查看全部评分

2 个回复

倒序浏览
InputStream ips = new FileInputStream("config.properties");
Properties props = new Properties();
props.load(ips);//你必须把你的文件加载到集合里,不然你的集合里没元素
ips.close();
String className = props.getProperty();//这个时候,就可以调用了

评分

参与人数 1技术分 +1 收起 理由
杨兴庭 + 1

查看全部评分

回复 使用道具 举报
哪颗最亮的星星 发表于 2013-8-5 21:19
InputStream ips = new FileInputStream("config.properties");
Properties props = new Properties();
pr ...

还是错的呃。。。
  1. import java.io.*;
  2. import java.util.*;


  3. import com.sun.xml.internal.fastinfoset.sax.Properties;

  4. public class ReflectTest2 {
  5. public static void main(String[] args) throws IOException{
  6.         InputStream ips = new FileInputStream("config.properties");
  7.         Properties props = new Properties();
  8.         props.load(ips);
  9.         ips.close();
  10.         String className = props.getProperty("className");
  11.         Collection collections =(Collection)Class.forName(className).newInstance();
  12.        
  13.         //Collection collections = new ArrayList();
  14.         //Collection collections = new HashSet();
  15.         ReflectionPoint pt1 = new ReflectionPoint(3,3);
  16.         ReflectionPoint pt2 = new ReflectionPoint(5,5);
  17.         ReflectionPoint pt3= new ReflectionPoint(3,3);

  18.                  collections.add(pt1);
  19.                  collections.add(pt2);
  20.                  collections.add(pt3);
  21.                  collections.add(pt1);

  22.                  pt1.y = 7;   //改完后就取不走了     原来的数据找不着了  就叫做  内存泄露
  23.                  collections.remove(pt1);
  24.                  System.out.println(collections.size());  
  25.                 }
  26.        
  27. }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马