概述
ActionContext ac = ActionContext.getContext();
ServletContext sc = (ServletContext) ac.get(ServletActionContext.SERVLET_CONTEXT);
String x = sc.getRealPath("/");
接着进入项目的工作空间,workspace1bamsbindaglWEB-INFconfig下找到了我们刚刚在eclipse环境中添加的
default.key.
in = new FileInputStream(x+"WEB-INF/config/default.key");
br = new BufferedReader(new InputStreamReader(in));
String code = br.readLine();
2)java项目向某一个文件中写一个字符串
File keyFile = new File("default.key");
if (!keyFile.exists()) {
keyFile.createNewFile();
}
FileWriter fw = new FileWriter(keyFile);
fw.write(finalcode);
fw.close();
最后
以上就是舒适小鸭子为你收集整理的在Action中获取文件的路径,读写文件的全部内容,希望文章能够帮你解决在Action中获取文件的路径,读写文件所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复