黑马程序员技术交流社区
标题:
Properties对象通过输出流向文件中写入count计数
[打印本页]
作者:
milimili
时间:
2015-3-11 21:39
标题:
Properties对象通过输出流向文件中写入count计数
本帖最后由 milimili 于 2015-3-11 23:10 编辑
如题,Properties对象通过输出流向文件中写入count计数,下次运行程序不能加载到count的值。
import java.io.*;
import java.util.*;
/**
练习:
建一个文件t.property,程序用Properties对象load,向文件中写入count计数。
**/
public class PropertiesLS{
public static void main(String[] args)throws IOException{
count();
}
public static void count()throws IOException{
File file = new File("t.property");
Properties p = new Properties();
int count = 0;
if(!file.exists()){
file.createNewFile();
}
FileInputStream fis = new FileInputStream(file);
FileOutputStream fos = new FileOutputStream(file);
p.load(fis);
String snum = p.getProperty("count");
if(snum != null){ //调试发现snum始终为null,why??
count = Integer.parseInt(snum);
}
count ++;
p.setProperty("count",count+"");
p.store(fos,"demo");
fis.close();
fos.close();
System.out.print(count);
}
}
作者:
路文龙
时间:
2015-3-11 22:23
一、项目中经常会需要读取配置文件(properties文件),因此读取方法总结如下:
1、通过java.util.Properties读取
Properties p=new Properties();
//p需要InputStream对象进行读取文件,而获取InputStream有多种方法:
//1、通过绝对路径:InputStream is=new FileInputStream(filePath);
//2、通过Class.getResourceAsStream(path);
//3、通过ClassLoader.getResourceAsStream(path);
p.load(InputStream is);
is.close();
p.getString(String(key))
复制代码
2、通过java.util.ResourceBundle读取
ResourceBundle rb=ResourceBundle.getBundle(packageName);
rb.getString(String key);
复制代码
二、Class.getResourceAsStream与ClassLoader.getResourceAsStream的区别
首先,Java中的getResourceAsStream有以下几种:
1. Class.getResourceAsStream(String path) : path 不以’/'开头时默认是从此类所在的包下取资源,以’/'开头则是从ClassPath根下获取。其只是通过path构造一个绝对路径,最终还是由 ClassLoader获取资源。
2. Class.getClassLoader.getResourceAsStream(String path) :默认则是从ClassPath根下获取,path不能以’/'开头,最终是由ClassLoader获取资源。
3. ServletContext. getResourceAsStream(String path):默认从WebAPP根目录下取资源,Tomcat下path是否以’/'开头无所谓,当然这和具体的容器实现有关。
4. Jsp下的application内置对象就是上面的ServletContext的一种实现。
其次,getResourceAsStream 用法大致有以下几种:
第一: 要加载的文件和.class文件在同一目录下,例如:com.x.y 下有类me.class ,同时有资源文件myfile.xml
那么,应该有如下代码:
me.class.getResourceAsStream("myfile.xml");
第二:在me.class目录的子目录下,例如:com.x.y 下有类me.class ,同时在 com.x.y.file 目录下有资源文件myfile.xml
那么,应该有如下代码:
me.class.getResourceAsStream("file/myfile.xml");
第三:不在me.class目录下,也不在子目录下,例如:com.x.y 下有类me.class ,同时在 com.x.file 目录下有资源文件myfile.xml
那么,应该有如下代码:
me.class.getResourceAsStream("/com/x/file/myfile.xml");
总结一下,可能只是两种写法
第一:前面有 “ / ”
“ / ”代表了工程的根目录,例如工程名叫做myproject,“ / ”代表了myproject
me.class.getResourceAsStream("/com/x/file/myfile.xml");
第二:前面没有 “ / ”
代表当前类的目录
me.class.getResourceAsStream("myfile.xml");
me.class.getResourceAsStream("file/myfile.xml");
最后,自己的理解:
getResourceAsStream读取的文件路径只局限与工程的源文件夹中,包括在工程src根目录下,以及类包里面任何位置,但是如果配置文件路径是在除了源文件夹之外的其他文件夹中时,该方法是用不了的。
错误:
class.getClassLoader().getResource("*********");这一句抛出空指针异常java.lang.NullPointerException,定位为getClassLoader()返回null
如果一个类是通过bootstrap 载入的,那我们通过这个类去获得classloader的话,有些jdk的实现是会返回一个null的,
解决:
修改代码如下:
InputStream inputStream;
ClassLoader cl = XXX. class .getClassLoader();
if (cl != null ) {
inputStream = cl.getResourceAsStream( "xx.properties" );
} else {
inputStream = ClassLoader.getSystemResourceAsStream( "xx.properties" );
}
Properties dbProps = new Properties();
dbProps.load(inputStream);
inputStream.close();
复制代码
所以保险起见我们最好还是使用我们自己写的类来获取classloader,这样一来就不会有问题。
作者:
milimili
时间:
2015-3-11 23:11
搞明白了,
FileOutputStream fos = new FileOutputStream(file);
创建位置错误。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2