本来是以做数据挖掘的目的进去哪网的,结构却成了系统开发。。。
不过还是比较认真的做了三个月,老师很认同我的工作态度和成果。。。
实习马上就要结束了,总结一下几点之前没有注意过的变成习惯和问题,分享给大家。
同时打个广告:去哪网内审部招JavaWeb开发实习生,时间非常自由,每周一天、周六周日甚至都可以,时间充裕的小伙伴给我留言啊,挣个零花钱,还能长点经验。。。。(保研的、想工作的大四狗最合适不过了。。。)
在Web项目中,常常需要上传文件、或者生成文件存放到项目根目录下;网上好多user.dir等都不好用,这里给出代码。
该代码的优点是,不论是windows还是linux,都适用。这就解决了在windows下开发,在linux下部署的不一致性。哈哈哈,很不错的代码:
public class GetServerRealPathUtil { //获取项目在服务器中的真实路径 //在windows和linux系统下均可正常使用 public static String getRootPath() { String classPath = GetServerRealPathUtil.class.getClassLoader().getResource("/").getPath(); String rootPath = ""; if("\\".equals(File.separator)){//windows下 rootPath = classPath.substring(1, classPath.indexOf("/WEB-INF/classes")); rootPath = rootPath.replace("/", "\\"); } if("/".equals(File.separator)){//linux下 rootPath = classPath.substring(0,classPath.indexOf("/WEB-INF/classes")); rootPath = rootPath.replace("\\", "/"); } return rootPath; } }
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-26 13:36:48