赞
踩
公司用绿盾保密公司资料这我可以理解,有时自己下的一些资源,或者同事处于外网环境要发一些资料出去,给对方一个加密文件,这谁能用。必须在有绿盾的电脑上才能打开,非常的不方便
从我第一次使用绿盾时就想着能不能自己解密呢,我也找了一些方法尝试后都无果,只会把源文件弄成0kb
通过摸索,我发现了以下规律
既然绿盾电脑可以正常读取,通过下载方式得到的文件不会被加密,那我直接写个程序,上传+下载一步搞定不就行了,不废话了直接动手试试
基本springboot工程生成,其实就是写一个 上传+下载 功能的控制器方法即可
我只贴必要依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.1</version> </dependency>
# Spring配置
spring:
# 文件上传
servlet:
multipart:
# 单个文件大小
max-file-size: 1024MB
# 设置总上传的文件大小
max-request-size: 2048MB
package top.zlhy7.springboot3.controller; import lombok.extern.slf4j.Slf4j; import org.apache.commons.io.IOUtils; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; import java.io.File; import java.io.FileInputStream; import java.io.IOException; /** * @author 沙福林 * @date 2022/12/31 17:08 * @description 测试控制器 */ @Slf4j @RequestMapping("test") @RestController public class TestController { /** * 测试绿盾解密 * 其实绿盾解密的本质就是,绿盾的电脑上文件读取正常,重新创建,下载下来第一次的位置选好不会变就不会加密了 */ @PostMapping("ldDecrypt") public ResponseEntity<byte[]> upload(@RequestParam("file") MultipartFile file) throws Exception { File file1 = new File(System.getProperty("user.dir")+"/"+file.getOriginalFilename()); file.transferTo(file1); log.info("解密成功:{},文件大小{}",file1.getAbsolutePath(),file1.length()); //获取指定文件 byte[] body = null; try (FileInputStream fis = new FileInputStream(file1)){ body = IOUtils.toByteArray(fis); } catch (IOException e) { log.error(e.getMessage()); } //设置消息响应头 HttpHeaders headers = new HttpHeaders(); headers.setContentDispositionFormData("attachment", file.getOriginalFilename()); return new ResponseEntity(body, headers, HttpStatus.OK); } }
注意使用完整工程两个前提 电脑必须有绿盾环境+电脑必须配置jdk环境
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。