restful文件下载功能实现

该博客详细介绍了如何使用RESTful API实现文件下载功能,包括ZIP压缩文件和普通文件的下载,目前这两种类型都已经成功实现。晚些时候作者将对内容进行排版优化。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

//          private static final byte[] UTF8_BOM = {(byte)0xEF, (byte)0xBB, (byte)0xBF};
//          private static final String FAV_ICO = "fav.ico";
//        @GET
//        @Path("/getFile")
//        @Produces(MediaType.APPLICATION_OCTET_STREAM)
//        public Response getFile(@PathParam("fileName") String fileName) throws IOException{
//            ByteArrayOutputStream bos = new ByteArrayOutputStream();
//            
//            ZipOutputStream zos = new ZipOutputStream(bos);
//
//            try {
//              zos.putNextEntry(new ZipEntry("utf-8.txt"));
//              zos.write(UTF8_BOM);
//              zos.write("这是一段UTF-8文本".getBytes("UTF-8"));
//              zos.closeEntry();
//              zos.flush();
//              zos.finish();
//              return Response.ok(bos.toByteArray(), "application/zip")
//                .header("Content-Disposition", "attachment; filename=demo2.zip")
//                .build();
//            } catch (IOException e) {
//              throw new RuntimeException(e);
//            } finally {
//              try {
//                zos.close();
//              } catch (IOException e) {}
//            }
//        }
        
        @GET
        @Path("/getMyFile")
        @Produces(MediaType.APPLICATION_OCTET_STREAM)
        public Response getMyFile() throws IOException{
            File file = new File("123.txt");
//            file.createNewFile();
            long fileLength = file.length();
            ResponseBuilder responseBuilder = Response.ok(file);
            responseBuilder.type("application/x-msdownload");
            responseBuilder.header("Content-Disposition", "attachment; filename="
                    + URLEncoder.encode("123.txt", "UTF-8"));
            responseBuilder.header("Content-Length", Long.toString(fileLength));
            Response response = responseBuilder.build();
            return response;

        }



一个是zip一个是文件,都已OK,晚上再排版,先上班了

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值