当前位置: 技术问答>java相关
jsp可以用相对路径读取同目录中的文件吗?
来源: 互联网 发布时间:2015-04-08
本文导语: 该如何做呢? | 如果你的应用是顶级目录可以用下面方法 String cp = request.getContextPath(); String sp = System.getProperty("file.separator"); String appPath = application.getRealPath(cp); File file=new File(appPath +"\"+"你jsp所在...
该如何做呢?
|
如果你的应用是顶级目录可以用下面方法
String cp = request.getContextPath();
String sp = System.getProperty("file.separator");
String appPath = application.getRealPath(cp);
File file=new File(appPath +"\"+"你jsp所在目录"+"\"+"文件名");
如果不是顶级我现在也还没办法解决
String cp = request.getContextPath();
String sp = System.getProperty("file.separator");
String appPath = application.getRealPath(cp);
File file=new File(appPath +"\"+"你jsp所在目录"+"\"+"文件名");
如果不是顶级我现在也还没办法解决