当前位置:首页 > java > 正文内容

java 读取项目下文件和上传文件

root3年前 (2021-11-10)java886

读取项目下文件

1、硬盘绝对路径

public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
    String path = "E:\\path\\1.txt";
    File file = new File(path);
    System.out.println(file.getAbsolutePath());//输出读取到的文件路径}

2、相对路径读取


public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
    String path = req.getServletContext().getRealPath("1.txt");
    File file = new File(path);
    System.out.println(file.getAbsolutePath());//输出读取到的文件路径}

项目中写入文件

public void doLoad(HttpServletRequest request,@RequestParam(value = "file") MultipartFile file, HttpServletResponse response)throws ServletException, IOException {
//      获取文件名称(避免携带盘符,IE11/Edge浏览器是有盘符)
    String fileName = file.getOriginalFilename();
    String destFileName=req.getServletContext().getRealPath("")+"uploaded"+ File.separator+fileName;
    File destFile = new File(destFileName);
//   创建上级文件夹
    destFile.getParentFile().mkdirs();
//   文件流写入
    file.transferTo(destFile);


扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:http://zhiqiu.top/?id=172

分享给朋友:

相关文章

java springboot 工具类之post、get请求

org.springblade.modules.netprobe.utilsorg.springframework.http.*org.springframework.util.CollectionUtilsorg.springframew...

java mybatis Parameter index out of range (5 > number of parameters, which is 4

java mybatis Parameter index out of range (5 > number of parameters, which is 4

该报错在修改mapper的xml之后出现的发现是因为注释的问题导致的在xml中注释已经要谨慎。...

java 处理json 字符串

假设有一个实体类public class User{   private int id;   private String name;&...

java @Bean 注解

Spring的@Bean注解用于告诉方法,产生一个Bean对象,然后这个Bean对象交给Spring管理。产生这个Bean对象的方法Spring只会调用一次,随后这个Spring将会将这个Bean对象放在自己的IOC容器中。SpringIO...

java 内存分页实现以及list的stream流

package com.how2java.springboot; import org.springframework.util.CollectionUtils; import java.util....

java-Springboot的几个重要注解@controller、@service、 @repository、@component

1、@controller 控制器(注入服务)用于标注控制层,相当于struts中的action层2、@service 服务(注入dao)用于标注服务层,主要用来进行业务的逻辑处理3、@repository(实现dao访问)用于标注数据访问...