package com.example.demo.bean;
import cn.hutool.core.util.StrUtil;
import cn.hutool.crypto.digest.DigestUtil;
import cn.hutool.http.HttpUtil;
import com.example.demo.entity.LocalFileEntity;
import com.example.mx3.bean.PageParam;
import com.example.mx3.exception.BizException;
import com.example.mx3.utils.SpringUtil;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import lombok.extern.slf4j.Slf4j;
import lombok.var;
import org.springframework.web.multipart.MultipartFile;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.time.LocalDateTime;
/**
* 文件
*/
@Slf4j
@Data
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = true)
public class LocalFileBean extends PageParam {
/**
* ID
*/
private Long id;
/**
* 创建时间
*/
private LocalDateTime createTime;
/**
* 更新时间
*/
private LocalDateTime updateTime;
/**
* 文件名称
*/
private String filename;
/**
* 扩展名
*/
private String ext;
/**
* MD5
*/
private String md5;
/**
* 类型
*/
private LocalFileTypeEnum type;
/**
* 内容
*/
private byte[] content;
@AllArgsConstructor
public enum LocalFileTypeEnum {
DB, SYSTEM, NET,
}
public LocalFileBean from(LocalFileEntity entity) {
this.id = entity.getId();
this.createTime = entity.getCreateTime();
this.updateTime = entity.getUpdateTime();
this.filename = entity.getFilename();
this.ext = entity.getExt();
this.md5 = entity.getMd5();
this.type = LocalFileTypeEnum.valueOf(entity.getType());
this.content = entity.getContent();
return this;
}
public LocalFileBean from(MultipartFile file, LocalFileTypeEnum type) {
try {
return this.from(
file.getOriginalFilename(),
file.getBytes(),
type
);
} catch (IOException e) {
log.error("文件读取失败>> ", e);
throw new BizException("文件读取失败");
}
}
public LocalFileBean from(String filename, byte[] bs, LocalFileTypeEnum type) {
this.filename = filename;
if (this.filename == null) {
throw new BizException("文件格式不符");
}
this.ext = this.filename.substring(this.filename.lastIndexOf(".") + 1);
this.md5 = DigestUtil.md5Hex(bs);
this.type = type;
if (LocalFileTypeEnum.DB.equals(type)) {
this.content = bs;
} else {
String filepath = SpringUtil.getProperty("local-file.path");
Path path;
if (StrUtil.isBlank(filepath)) {
path = Paths.get(System.getProperty("user.dir"));
path = path.getParent();
} else {
path = Paths.get(filepath);
}
path = Paths.get(path.toString(), "file", this.md5.substring(0, 2).toLowerCase());
try {
if (Files.notExists(path)) {
Files.createDirectories(path);
}
path = Paths.get(path.toString(), System.currentTimeMillis() + "_" + this.filename);
Files.write(path, bs);
this.content = path.toString().getBytes(StandardCharsets.UTF_8);
} catch (IOException e) {
log.error("文件写入失败>> ", e);
throw new BizException("文件写入失败");
}
}
return this;
}
public LocalFileEntity toEntity() {
LocalFileEntity entity = new LocalFileEntity();
entity.setId(this.id);
entity.setCreateTime(this.createTime);
entity.setUpdateTime(this.updateTime);
entity.setFilename(this.filename);
entity.setExt(this.ext);
entity.setMd5(this.md5);
entity.setType(this.type.name());
entity.setContent(this.content);
return entity;
}
public ByteArrayInputStream buildBis() throws IOException {
if (LocalFileTypeEnum.DB.equals(this.type)) {
return new ByteArrayInputStream(this.content);
}
if (LocalFileTypeEnum.NET.equals(this.type)) {
var bs = HttpUtil.downloadBytes(new String(this.content, Charset.defaultCharset()));
return new ByteArrayInputStream(bs);
}
var path = Paths.get(new String(this.content, StandardCharsets.UTF_8));
var bs = Files.readAllBytes(path);
return new ByteArrayInputStream(bs);
}
public String buildImgContentType() {
if ("jpg".equals(ext)) {
return "image/" + "jpeg";
}
return "image/" + ext;
}
public String buildContentType() {
return ext;
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
毕业设计 基于java+SpringBoot协同过滤算法的高考志愿推荐系统源码+详细文档+全部数据资料 优秀项目.zip
共290个文件
xml:86个
java:80个
js:77个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 1 下载量 29 浏览量
2024-05-08
18:09:54
上传
评论 2
收藏 25.52MB ZIP 举报
温馨提示
【资源说明】 毕业设计 基于SpringBoot协同过滤算法的高考志愿推荐系统源码+详细文档+全部数据资料 优秀项目.zip 【备注】 1、该项目是高分毕业设计项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过mac/window10/11/linux测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(如软件工程、计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
资源推荐
资源详情
资源评论
收起资源包目录
毕业设计 基于java+SpringBoot协同过滤算法的高考志愿推荐系统源码+详细文档+全部数据资料 优秀项目.zip (290个子文件)
index-11e54df4.css 247KB
TheLogin-ae030e73.css 722B
TheRegister-0d58bf91.css 577B
TheRecommend-94e4c6a2.css 188B
TheHomeIndex-b5b4c2d3.css 188B
TitleSeparator-a341dc95.css 141B
TheSchool-890ef793.css 98B
Chart-91acf088.css 84B
TheHome-d3093bcb.css 78B
TheFeedbackDetail-5a7eccd5.css 74B
TheFeedback-fb72993d.css 67B
TheSchoolLineDetail-41ff0665.css 63B
TheProfessionDetail-7d306b5c.css 62B
TheSchoolDetail-3aef2bdf.css 58B
TheProfessionRecommend-3e4f805d.css 57B
TheMajorDetail-800ce686.css 57B
TheProfession-7033671d.css 55B
TheBbsDetail-3b332274.css 55B
TheMajor-f0631ab1.css 50B
TheBbs-37d88951.css 48B
.gitignore 176B
.gitignore 32B
index.html 429B
favicon.ico 63KB
demo.iml 9KB
mx3-base-jar-with-dependencies.jar 24.56MB
LocalFileBean.java 5KB
DataMapController.java 5KB
RecommendController.java 5KB
UserAccessHistoryRepository.java 5KB
SchoolLineRepository.java 4KB
GM.java 4KB
UserRepository.java 4KB
MajorRepository.java 4KB
SchoolRepository.java 4KB
UserCollectRepository.java 3KB
LoginController.java 3KB
UserCommentRepository.java 3KB
ProfessionRepository.java 3KB
SchoolMajorRepository.java 3KB
SettingRepository.java 3KB
FeedbackRepository.java 3KB
LocalFileController.java 3KB
BbsRepository.java 3KB
UserController.java 3KB
UserCommentController.java 3KB
SchoolLineController.java 3KB
UserCollectController.java 2KB
LocalFileRepository.java 2KB
UserAccessHistoryController.java 2KB
SchoolMajorBean.java 2KB
SchoolController.java 2KB
LoginInfoBean.java 2KB
RecommendedComponent.java 2KB
UserBean.java 2KB
ProfessionBean.java 2KB
ProfessionController.java 2KB
FeedbackController.java 2KB
MajorController.java 2KB
SchoolMajorController.java 2KB
MajorBean.java 2KB
ChartBean.java 2KB
SchoolLineBean.java 2KB
UserCommentBean.java 2KB
BbsController.java 2KB
SchoolBean.java 2KB
SettingController.java 2KB
ProfessionEntity.java 2KB
SchoolMajorEntity.java 2KB
UserAccessHistoryBean.java 2KB
UserCollectBean.java 2KB
FeedbackBean.java 1KB
BbsBean.java 1KB
UserEntity.java 1KB
SettingBean.java 1KB
MajorEntity.java 1KB
SchoolEntity.java 1KB
SchoolLineEntity.java 1KB
SchoolMapper.java 1KB
UserCommentEntity.java 1KB
LocalFileEntity.java 1KB
CaptchaBean.java 1KB
UserAccessHistoryEntity.java 1KB
FeedbackEntity.java 1022B
UserCollectEntity.java 1019B
BbsEntity.java 1010B
SettingEntity.java 904B
CorsConfig.java 902B
RecommendSchoolEntity.java 635B
RecommendSchoolBean.java 561B
StartApplication.java 521B
StartApplicationTests.java 502B
LoginBean.java 410B
UserAccessHistoryMapper.java 312B
UserCollectMapper.java 288B
UserCommentMapper.java 288B
SchoolLineMapper.java 288B
SchoolMajorMapper.java 288B
ChangePasswordBean.java 282B
ProfessionMapper.java 279B
共 290 条
- 1
- 2
- 3
资源评论
- 2301_768884392024-09-27资源内容总结的很到位,内容详实,很受用,学到了~
不走小道
- 粉丝: 3367
- 资源: 5054
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于Dubbo实现的灰度发布资料齐全+详细文档.zip
- 基于Dubbo自适应负载均衡资料齐全+详细文档.zip
- 基于ffmpeg+spring+quartz+dubbo+zookeeper+MyBatis服务化的视频转换分布式服务资料齐全+详细文档.zip
- 基于Java的微服务实践,单体微服务创建、Docker部署、Dubbo微服务实践等资料齐全+详细文档.zip
- 基于dubbo协议的mock系统资料齐全+详细文档.zip
- 基于Guns+springboot+dubbo开发资料齐全+详细文档.zip
- CSDN2Test.java
- 蛋白质摄入对肌肉影响数据集,训练健身与蛋白质摄入对瘦体重影响的数据集,蛋白摄入对体重的影响
- Linux命令大全完整版
- 基于grpc+dubbo+springboot开发的分布式服务资料齐全+详细文档.zip
- 基于seata + dubbo的分布式事务--- AT模式和TCC模式实战资料齐全+详细文档.zip
- 基于openoffice+jodconverter-core-3.0-beta-4-dist+spring+quartz+dubbo+MyBatis服务化的文档
- 基于Solr4.9.0的搜索系统:包括Solr索引建立、Solr索引查询DUBBO接口等内容。资料齐全+详细文档.zip
- 基于Spring Boot + Mybatis + Dubbo + Zookeeper + RabbitMQ + Redis + Nginx的高并发秒杀系统资料齐全+详细文档.zip
- 基于Spring boot 2.0+ 脚手架重构微服务系统, 小程序服务端快速上手资料齐全+详细文档.zip
- 基于Spring Boot、Redis、Dubbo、Zookeeper、Vue前后端分离、分布式架构的个人运动健康管理系统。资料齐全+详细文档.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功