当前位置: 技术问答>java相关
请问如何读取文件
来源: 互联网 发布时间:2015-06-27
本文导语: 请问如何读取一个在web,根目录下的.txt 文件,也就是此文件和页面.jsp 放在同一个目录下,我不知道怎么设读取的路径。jsp, javabean 中都可以。谢谢。 | "file://" + servletContext.getRealPath("/") +...
请问如何读取一个在web,根目录下的.txt 文件,也就是此文件和页面.jsp 放在同一个目录下,我不知道怎么设读取的路径。jsp, javabean 中都可以。谢谢。
|
"file://" + servletContext.getRealPath("/") + "test.txt"
|
如果是根目录的话,可以这样设定path
String FilePath=System.getProperty("user.dir");//这是你使用的根目录例如D:
如果在d:的某一个目录的话,
String FilePath=System.getProperty("user.dir");
FilePath=FilePath+"具体的目录";//具体的目录用引号引起来。
String FilePath=System.getProperty("user.dir");//这是你使用的根目录例如D:
如果在d:的某一个目录的话,
String FilePath=System.getProperty("user.dir");
FilePath=FilePath+"具体的目录";//具体的目录用引号引起来。
|
应该直接就是./test.txt
|
如果用相对路径
./test.txt和.\test.txt都行
要不就用绝对路径
./test.txt和.\test.txt都行
要不就用绝对路径
|
有点错误,改一下!
如果是根目录的话,可以这样设定path
String FilePath=System.getProperty("user.dir");//这是你使用目录
例如D:YY
如果在D:YY
的某一个目录的话,
String FilePath=System.getProperty("user.dir");
FilePath=FilePath+"具体的目录";//具体的目录用引号引起来。
如果是根目录的话,可以这样设定path
String FilePath=System.getProperty("user.dir");//这是你使用目录
例如D:YY
如果在D:YY
的某一个目录的话,
String FilePath=System.getProperty("user.dir");
FilePath=FilePath+"具体的目录";//具体的目录用引号引起来。