jsp中读取properties文件,中遇到的路径问题,

弄了一下午的这个properties文件路径问题,真痛苦。

读取properties文件的类就是上一篇日志中的类,本来想吧webconfig.properties文件放到WEB-INF目录下进行读取,但是死活读取不到,也米有百度到什么好方法。只好吧webconfig.properties文件放到源码根目录下,然后用

getClass().getResource("/").getPath()

得到编译后的classes目录,然后和webconfig.properies组成据对路径进行读取
突然发现,上一篇日志中的类在这里不能用,只能用下边这个

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package uitls;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

/**
 *
 * @author min
 */
public class PropertyUtils {

    Properties p = null;

    public void setFilePath(String path) {
        if (path.isEmpty() || path == null) {
            System.err.println("未设置路径");
        }
        //InputStream inStream = ClassLoader.getSystemResourceAsStream(path);
        p = new Properties();
        try {
            //p.load(inStream);
            p.load(new FileInputStream(path));
        }
        catch (IOException e) {//
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    public void set(String key, String value) {
        p.setProperty(key, value);
    }

    public String get(String key) {
        return p.getProperty(key);
    }
}

环境:eclipse+win7 写的java程序,不是jsp

来自http://minbaby.sinaapp.com/minbaby-love-yanzi-241

你可能感兴趣的:(java,jsp,properties)