您的位置:首页 > 运维架构

org.openembedded.swf 用于演示如何构建openembedded的flash动画

2008-01-01 16:18 399 查看


public static String getProValue(String path,String name)

{

String value = "";

try

{

FileInputStream is=new FileInputStream(new File(path));

Properties props = new Properties();

props.load(is);

value = props.getProperty(name);

is.close();

}

catch (Exception e)

{

System.out.println("getProValue:"+e.toString());

}

return value;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐