是否有办法自动检测是否从类路径或完整路径读取文件?
我希望API方法执行与通过以下方法(readFile
)完成的操作。
有两个通用定义,如
classpath:filename
或file:filename
public readFile(String path){
if(path.startswith("classpath")) {
getClass().getResourceAsStream(path);
}else if(path.startswith("file")) {
//
FileInoutStream(new File(path))
}
使用:Servlet 3.0