axios优雅的下载文件

1 pom

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.gzz</groupId>
    <artifactId>08-kaptcha</artifactId>
    <version>1.0</version>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.0.0</version>
    </parent>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>17</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

2 index.html

<!DOCTYPE html>
<html>
<head><meta charset='UTF-8'><title>axios优雅的下载文件</title></head>
<head>
<script type='text/javascript' src='axios.min.js'></script>
</head>
<body>
    验证码:<img src="/code" id="image" ><input type="button" value="刷新" onclick="refresh()" /><br>
    <a id="file_01" ></a><br>
    <input type="button" value="下载" onclick="downFile1()" />
    <input type="button" value="下载" onclick="downFile2()" />
    <input type="button" value="下载" onclick="downFile3()" />
</body>
<script>
axios.defaults.headers.post['Content-Type'] = 'application/json;charset=UTF-8';
axios.interceptors.response.use(res => res.data);
function refresh(){    
    image.src = "/code?t=" + new Date().getTime();
}    
function downFile1() {
    let param={id:1,age:2,name:'高振中'}; //对象参数很有用
    axios.post('/file_01', param ,{ responseType: "blob" }).then(res => { 
        file_01.href = window.URL.createObjectURL(new Blob([res], { type: res.type })); //创建下载的链接;
        file_01.download = "中文-文件名.xlsx";  //下载后文件名
        file_01.click(); //点击下载
    });
}
function downFile2() {
    axios.post('/file_02', null ,{ responseType: "blob" }).then(res => { 
        file_01.href = window.URL.createObjectURL(new Blob([res], { type: res.type }));
        file_01.download = "中文-文件名.xlsx";
        file_01.click();
    });
}
function downFile3() {
    axios.post('/file_03', null ,{ responseType: "blob" }).then(res => { 
        file_01.href = window.URL.createObjectURL(new Blob([res], { type: res.type }));
        file_01.download = "image.png";
        file_01.click();
    });
}
</script>
</html>

3 FileController.java

package com.gzz.sys;

import java.nio.file.Files;
import java.nio.file.Paths;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.gzz.config.Kaptcha;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;

/**
 * @author https://www.jianshu.com/u/3bd57d5f1074
 * @date 2023-02-08 10:50:00
 */
@Slf4j
@RestController
public class FileController {
    @Autowired
    private ObjectMapper mapper;

    @SneakyThrows
    @GetMapping("code")
    public HttpEntity<byte[]> code() {
        String code = Kaptcha.code(); // 放到缓存里
        log.info("code={}", code);
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.IMAGE_JPEG);
        return new HttpEntity<>(Kaptcha.imageByte(code), headers);
    }

    @SneakyThrows
    @PostMapping("file_01")
    public ResponseEntity<byte[]> file_01(@RequestBody User user) {
        log.info("user={}", mapper.writeValueAsString(user));
        byte[] bytes = Files.readAllBytes(Paths.get(ResourceUtils.getFile("classpath:中文-文件名.xlsx").getPath()));
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
//      headers.setContentDispositionFormData("attachment", new String(name.getBytes("GBK"), "ISO8859-1"));
        return new ResponseEntity<byte[]>(bytes, headers, HttpStatus.OK);
    }

    @SneakyThrows
    @PostMapping("file_03")
    public HttpEntity<byte[]> file_03() {
        byte[] bytes = Files.readAllBytes(Paths.get(ResourceUtils.getFile("classpath:image.png").getPath()));
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
//      headers.setContentDispositionFormData("attachment", name);
        return new HttpEntity<byte[]>(bytes, headers);
    }

    @SneakyThrows
    @PostMapping("file_02")
    public HttpEntity<byte[]> file_02() {
        byte[] bytes = Files.readAllBytes(Paths.get(ResourceUtils.getFile("classpath:中文-文件名.xlsx").getPath()));
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
        return new HttpEntity<byte[]>(bytes, headers);
    }
}

4 User.java

import lombok.Data;
/**
 * @author https://www.jianshu.com/u/3bd57d5f1074
 * @date 2023-02-08 10:50:00
 */
@Data
public class User {
    Integer id;
    Integer age;
    String name;
}

5 Kaptcha .java

package com.gzz.config;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Random;
import javax.imageio.ImageIO;
/**
 * @author https://www.jianshu.com/u/3bd57d5f1074
 * @date 2023-02-08 10:50:00
 */
public class Kaptcha {
    private static final Random RAND = new Random();
    private static final int LENGTH = 4; // 验证码位数
    private static final int SIZE = 60; // 字号
    private static final int WIDTH = 160; // 画板宽
    private static final int HEIGHT = 60; // 画板高
    private static final BufferedImage IMG = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_BGR);// 创建画板
    private static final Graphics2D GRAPH = IMG.createGraphics();// 画笔
    public static byte[] imageByte(String code) throws IOException {
        GRAPH.setColor(color()); // 随机颜色
        GRAPH.fillRect(0, 0, WIDTH, HEIGHT); // 0,0,100宽度,30表示高度
        GRAPH.setColor(color()); // 随机颜色
        GRAPH.setFont(font()); // 随机字体-可选
        GRAPH.drawString(code, 10, 50); // 坐标10,50开始画
        GRAPH.setStroke(new BasicStroke(2f)); // 画笔
        for (int i = 0; i < 6; i++) { // 干扰线-可选
            GRAPH.setColor(color());
            GRAPH.drawLine(RAND.nextInt(WIDTH), RAND.nextInt(HEIGHT), RAND.nextInt(WIDTH), RAND.nextInt(HEIGHT));// 区域内随机两个点画线
        }
        for (int i = 0; i < 20; i++) { // 干扰点-可选
            GRAPH.setColor(color());
            GRAPH.drawOval(RAND.nextInt(WIDTH), RAND.nextInt(HEIGHT), 2, 2);
        }
        ByteArrayOutputStream stream = new ByteArrayOutputStream(); // 转成字节数组
        ImageIO.write(IMG, "jpg", stream);
        return stream.toByteArray();
    }
    // 纯随机字符
    public static String code() {
        StringBuilder code = new StringBuilder();
        for (int i = 0; i < LENGTH; i++) {
            switch (RAND.nextInt(3)) {
            case 0 -> code.append((char) (RAND.nextInt(26) + 65));
            case 1 -> code.append((char) (RAND.nextInt(26) + 97));
            case 2 -> code.append(RAND.nextInt(10));
            }
        }
        return code.toString();
    }
    // 随机字体
    private static Font font() {
        Font[] fonts = { new Font("微软雅黑", Font.ITALIC, SIZE), //
                new Font("新宋体", Font.PLAIN, SIZE), //
                new Font("Microsoft YaHei Ul", Font.PLAIN, SIZE), //
                new Font("仿宋", Font.PLAIN, SIZE), //
                new Font("Cambria", Font.BOLD, SIZE) };
        return fonts[RAND.nextInt(fonts.length)];
    }
    // 随机颜色
    private static Color color() {
        return new Color(RAND.nextInt(256), RAND.nextInt(256), RAND.nextInt(256));
    }
}

6 目录结构

1675783526166.png

7 下载地址:

https://gitee.com/gao_zhenzhong/spring-boots/tree/master/ok/66-java/08-kaptcha

8 运行效果

访问地址: http://localhost:8080/

1675783992336.png

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,335评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,895评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,766评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,918评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,042评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,169评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,219评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,976评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,393评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,711评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,876评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,562评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,193评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,903评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,699评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,764评论 2 351

推荐阅读更多精彩内容