public static void main(String[] args) throws IOException {
System.out.println(new File(".").getAbsolutePath());
Properties pro = new Properties();
//相對路徑
//InputStream input = new BufferedInputStream(new FileInputStream("src/text.properties"));
//絕對路徑
InputStream input = new BufferedInputStream(new FileInputStream("D:/stsworkspace/utils/src/text.properties"));
pro.load(input);
Iterator<String> it=pro.stringPropertyNames().iterator();
while(it.hasNext()){
String key=it.next();
System.out.println(key+":"+pro.getProperty(key));
}
input.close();
}
相對路徑
java IO會默認(rèn)定位到文件的根目錄即:D:/stsworkspace/utils慰安,以此的相對路徑來找到text.properties這個文件下面就是src/text.properties乳绕。
那么JVM會找到路徑D:/stsworkspace/utils/src/text.properties稿静,這里為什么src/text.properties前面沒有"/",?
"(無)"邮辽,"/","./","../"區(qū)別
1.(無)開頭表示當(dāng)前目錄下的
2.(/)開頭的目錄表示該目錄為根目錄的一個子目錄
3.(./)開頭的目錄表示該目錄為當(dāng)前目錄(當(dāng)前目錄所在的目錄)的一個子目錄
4.(../)開頭的目錄表示該目錄為當(dāng)前目錄的父目錄
絕對路徑
文件真實存的路徑科吭,本地硬盤中路徑
web開發(fā)中的使用
在Web開發(fā)中盡量使用絕對路徑奖慌,前一段路徑無論是用的Windows或Linux開發(fā)驮俗,都可以利用 ServletActionContext.getServletContext().getRealPath(path); 來獲壤哪侣集!
案例
在uitls類中讀取該路徑下的文件
public class ConfigManager {
private static final Logger logger = LoggerFactory.getLogger(ConfigManager.class);
private static ConfigManager configManager;
// 讀取屬性文件
private static Properties properties;
/**
* 在構(gòu)造器中初始化讀取properties文件
*/
private ConfigManager() {
String configManager = this.getClass().getResource("").getPath();
logger.info("configManager:-------" + configManager);
String path = configManager.substring(0, configManager.indexOf("WEB-INF")) + "WEB-INF/db.properties";
properties = new Properties();
try {
InputStream in = new BufferedInputStream(new FileInputStream(path));
//InputStream in = new BufferedInputStream(new FileInputStream("src/main/webapp/WEB-INF/db.properties"));
properties.load(in);
in.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
在servelet中讀取文件
方法一:
String path = getServletContext().getRealPath("");
Properties config = new Properties();
InputStream in = new FileInputStream(path+"/WEB-INF/db.properties");
config.load(in);
方法二:
Properties config = new Properties();
InputStream in = this.getServletContext().getResourceAsStream("/WEB-INF/db.properties");
config.load(in);