File f = File(String pathname);
通过将给定路径名字符串转换成抽象路径名来创建一个新 File 实例。
fgetPath(); 就可以了
如果你要选择文件 可以用 JFileChooser
然后可以 调用getSelectedFile()getPath();返回路径!
不懂再问!
java获取根路径有两种方式:
1)在servlet可以用一下方法取得:
requestgetRealPath(“/”)
例如:filepach = requestgetRealPath(“/”)+”//upload//”;
2)不从jsp,或servlet中获取,只从普通java类中获取:
String path = getClass()getProtectionDomain()getCodeSource()getLocation()getPath();
SAXReader() saxReader = new SAXReader();
if(pathindexOf(“WEB-INF”)>0){
path = pathsubstring(0,pathindexOf(“/WEB-INF/classes”)+16);
// ‘/WEB-INF/classes’为16位
document = saxReaderread(path+filename);
}else{
document = saxReaderread(getClass()getResourceAsStream(filename));
}
以上就是关于Java获取Windows系统文件夹路径全部的内容,包括:Java获取Windows系统文件夹路径、java怎么取到web服务的根路径、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)