不管你是新手还是老鸟在程序中读取资源文件总会遇到一些找不到文件的问题这与Java底层的实现有关不能算bug只要方法得当问题还是可以解决的
项目的文件夹结构
repathtest
├─src
│ └─com
│ └─lavasoft
│ ├─test
│ └─res
├─doc
在Java开发工具的project中使用相对路径
在project中相对路径的根目录是project的根文件夹在此就是repathtest文件夹了
创建文件的写法是
File f = new File(src/com/lavasoft/res/atxt);
File f = new File(doc/btxt);
注意
路径不以/开头
脱离了IDE环境这个写法就是错误的也并非每个IDE都如此但我见到的都是这样的
通过CLASSPATH读取包内文件
读取包内文件使用的路径一定是相对的classpath路径比如a位于包内此时可以创建读取a的字节流
InputStream in = ReadFileclassgetResourceAsStream(/com/lavasoft/res/atxt);
有了字节流就能读取到文件内容了
注意
这里必须以/开头
看看完整的测试代码
package comlavasofttest;
import javaio*;
/**
* Java读取相对路径的文件
*
* @author leizhimin ::
*/
public class ReadFile {
public static void main(String[] args) {
readTextA_ByClassPath();
readTextA_ByProjectRelativePath();
readTextB_ByProjectRelativePath();
}
/**
* 通过工程相对路径读取(包内)文件注意不以/开头
*/
public static void readTextA_ByProjectRelativePath() {
Systemoutprintln(readTextA_ByProjectRelativePath);
File f = new File(src/com/lavasoft/res/atxt);
String a = fileString(f GBK);
Systemoutprintln(a);
}
/**
* 通过工程相对路径读取(包外)文件注意不以/开头
*/
public static void readTextB_ByProjectRelativePath() {
Systemoutprintln(readTextB_ByProjectRelativePath);
File f = new File(doc/btxt);
String b = fileString(f GBK);
Systemoutprintln(b);
}
/**
* 通过CLASSPATH读取包内文件注意以/开头
*/
public static void readTextA_ByClassPath() {
Systemoutprintln(readTextA_ByClassPath);
InputStream in = ReadFileclassgetResourceAsStream(/com/lavasoft/res/atxt);
String a = streamString(in GBK);
Systemoutprintln(a);
}
/**
* 文件转换为字符串
*
* @param f 文件
* @param charset 文件的字符集
* @return 文件内容
*/
public static String fileString(File f String charset) {
String result = null;
try {
result = streamString(new FileInputStream(f) charset);
} catch (FileNotFoundException e) {
eprintStackTrace();
}
return result;
}
/**
* 文件转换为字符串
*
* @param in 字节流
* @param charset 文件的字符集
* @return 文件内容
*/
public static String streamString(InputStream in String charset) {
StringBuffer sb = new StringBuffer();
try {
Reader r = new InputStreamReader(in charset);
int length = ;
for (char[] c = new char[]; (length = rread(c)) != ;) {
sbappend(c length);
}
rclose();
} catch (UnsupportedEncodingException e) {
eprintStackTrace();
} catch (FileNotFoundException e) {
eprintStackTrace();
} catch (IOException e) {
eprintStackTrace();
}
return sbtoString();
}
}
(代码写得粗糙异常没做认真处理)
运行结果
readTextA_ByClassPath
aaaaaaaaa
sssssssss
readTextA_ByProjectRelativePath
aaaaaaaaa
sssssssss
readTextB_ByProjectRelativePath
bbbbbbbbbbb
Process finished with exit code
这是通过IDEA开发工具运行的结果没问题如果换成控制台执行那么使用了项目相对路径的读取方式会失败原因是此时已经脱离了项目的开发环境这个问题常常困扰着一些菜鸟代码在开发工具好好的发布后执行就失败了!
下面我截个图
获取CLASSPATH下文件的绝对路径
当使用相对路径写入文件时候就需要用到绝对路径下面是个例子
package comlavasoft;
import javaioFile;
/**
* CLASSPATH文件的绝对路径获取测试
*
* @author leizhimin ::
*/
public class Test {
//classpath的文件路径
private static String cp = /com/lavasoft/cfg/syscfgproperties;
public static void main(String[] args) {
//当前类的绝对路径
Systemoutprintln(TestclassgetResource(/)getFile());
//指定CLASSPATH文件的绝对路径
Systemoutprintln(TestclassgetResource(cp)getFile());
//指定CLASSPATH文件的绝对路径
File f = new File(TestclassgetResource(cp)getFile());
Systemoutprintln(fgetPath());
}
}
输出
/D:/projects/bbt/code/cdn/planrpt/out/production/planrpt/
/D:/projects/bbt/code/cdn/planrpt/out/production/planrpt/com/lavasoft/cfg/syscfgproperties
D:\projects\bbt\code\cdn\planrpt\out\production\planrpt\com\lavasoft\cfg\syscfgproperties
Process finished with exit code
总结
使用工程相对路径是靠不住的
使用CLASSPATH路径是可靠的
对于程序要读取的文件尽可能放到CLASSPATH下这样就能保证在开发和发布时候均正常读取