设计模式分析 1.读取配置文件 读取配置文件有两种方式: 使用类加载器,它只能读取类路径的配置文件 使用ServletContext对象的getRealPath() 2.创建SQLSessionFactory工厂 创建工厂使用的构建者模式。 SqlSessionFactory即为构建者,它会处理一切 ...
分类:
其他好文 时间:
2020-03-25 01:33:13
阅读次数:
68
1.普通文件上传的路径: 通过getRealPath获取相关路径 String photoFolder =request.getServletContext().getRealPath("uploaded"); 打印文件路径可以得到路径就是下面这样,其实就是在工作空间下面 D:\javaWeb\wo ...
分类:
编程语言 时间:
2020-03-08 19:49:32
阅读次数:
54
使用当前web应用的根路径再拼接所需文件的路径可以得出文件的绝对路径 1 ServletContext context = this.getServletContext(); 2 String realpath =context.getRealPath("所需文件路径"); 使用类加载器获取.cla ...
分类:
其他好文 时间:
2020-03-01 12:10:54
阅读次数:
72
一、application String getContextPath():获取虚拟路径String getRealPath():获取虚拟路径对应的绝对路径 实例 application.jsp <%@ page language="java" contentType="text/html; cha ...
分类:
Web程序 时间:
2020-01-16 01:16:25
阅读次数:
92
对于入门程序的流程分析 使用过程 1. 读配置文件 读取配置文件时绝对路径和相对路径(web工程部署后没有src路径)都有一定问题,实际开发中一般有两种方法 使用类加载器,它只能读取类路径的配置文件 使用SerbletContext对象的getRealPath() 2. 创建SqlSessionFa ...
分类:
其他好文 时间:
2019-12-18 00:02:38
阅读次数:
87
1.cookie和session的区别: session cookie 保存的位置 服务端 客户端 保存的内容 Object String 2. String getContextPath() 虚拟路径 String getRealPath(String name)虚拟路径相对的绝对路径(虚拟路径) ...
分类:
其他好文 时间:
2019-09-07 00:30:59
阅读次数:
105
有两种方式可以读取资源文件 * InputStream getResourceAsStream(String path) 通过文件的地址获取输入流 * String getRealPath(String path) 通过文件的地址获取文件的绝对磁盘路径 步骤: 1. 创建配置文件db.propert ...
分类:
其他好文 时间:
2019-06-14 22:17:05
阅读次数:
122
String real_path = request.getSession().getServletContext().getRealPath("/");//获取文件路径,我是通过模板进行导出,在项目中拿到模板 if (!real_path.endsWith("/")) { real_path = ...
分类:
其他好文 时间:
2019-01-03 14:10:16
阅读次数:
168
String webRootPath=request.getSession().getServletContext().getRealPath("/"); webRootPath String uploadPath="download\\dadan\\"; //uploadPath附加传入的路径,组 ...
分类:
Web程序 时间:
2018-08-16 19:49:19
阅读次数:
197
以工程名为test为例1.获取项目绝对路径一StringrootPath=request.getSession().getServletContext().getRealPath("/").replace("\\","/");获取内容如下:D:/apacheTomcat/apache-tomcat-7.0.59/webapps/test/2.获取web工程名StringprojectName=re
分类:
编程语言 时间:
2018-08-10 19:39:47
阅读次数:
201