java-文件上传到读取文件内容

1.下载文件,将文件保存到本地。(只试用excel);

2.对文件的标题进行检验;

3.获取导入的批次(取一个表的一个值,加1);

4.循环获取文件某一个行,某一列的值,set到对象中;

5.检验值的合法性;

6.循环保存到对象中。

7.用map将错误的信息和正确的信息,JSONObject.fromObject(map);



public String uploadFile() throws Exception {
logger.info("开始导入规则文件:" + fileInputFileName);
InputStream is = new FileInputStream(fileInput);
String uploadPath = ServletActionContext.getServletContext()
.getRealPath("/upload");
System.out.println(uploadPath);
File targetFile = new File(uploadPath, this.getFileInputFileName());
OutputStream os = new FileOutputStream(targetFile);
byte[] buffer = new byte[1024];
int length = 0;
while ((length = is.read(buffer)) > 0) {
os.write(buffer, 0, length);
}
is.close();
os.close();
Map<String, Object> map = personalKPIMonitorManualRuleService
.importRules(targetFile);
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("text/html;charset=utf-8");
PrintWriter out = response.getWriter();
out.println(JSONObject.fromObject(map));
// if(flag==true){
// logger.info("规则文件导入成功:"+fileInputFileName);
// out.println("规则文件导入成功:"+fileInputFileName);
// }else{
// logger.info("规则文件导入失败:"+fileInputFileName);
// out.println("规则文件导入失败,详见日志:"+fileInputFileName);
// }
out.flush();
out.close();
return null;
}













































  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java,可以使用MultipartFile类来读取上传的文件内容。MultipartFile是Spring框架提供的一个接口,用于处理文件上传。 要读取MultipartFile的文件内容,可以按照以下步骤进行操作: 1. 在Controller,使用@RequestParam注解将MultipartFile对象作为参数接收文件上传请求。 2. 使用MultipartFile对象的getInputStream()方法获取文件的输入流。 3. 使用输入流进行文件内容的读取。可以使用BufferedReader等类来读取文件内容。 下面是一个示例代码,演示了如何读取MultipartFile的文件内容: ```java import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.multipart.MultipartFile; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; @RestController public class FileUploadController { @PostMapping("/upload") public String uploadFile(@RequestParam("file") MultipartFile file) { try { InputStream inputStream = file.getInputStream(); BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); String line; StringBuilder content = new StringBuilder(); while ((line = reader.readLine()) != null) { content.append(line); } reader.close(); inputStream.close(); return content.toString(); } catch (IOException e) { e.printStackTrace(); return "File upload failed."; } } } ``` 在上述示例,通过调用file.getInputStream()方法获取文件的输入流。然后使用BufferedReader逐行读取文件内容,并将内容存储在StringBuilder。最后返回文件内容的字符串表示。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值