• springboot 通过url下载文件并上传到OSS


    DEMO流程

    • 传入一个需要下载并上传的url地址
    • 下载文件
    • 上传文件并返回OSS的url地址

    springboot pom文件依赖

    
    <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0modelVersion>
        <parent>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-parentartifactId>
            <version>2.7.15version>
            <relativePath/> 
        parent>
        <groupId>com.examplegroupId>
        <artifactId>springboot-rocketmqartifactId>
        <version>0.0.1-SNAPSHOTversion>
        <name>springboot-demoname>
        <description>springboot-demodescription>
        <properties>
            <java.version>11java.version>
            <rocketmq-client-java-version>5.1.3rocketmq-client-java-version>
        properties>
        <dependencies>
            <dependency>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-starter-webartifactId>
            dependency>
    
            <dependency>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-configuration-processorartifactId>
                <optional>trueoptional>
            dependency>
            <dependency>
                <groupId>org.projectlombokgroupId>
                <artifactId>lombokartifactId>
                <optional>trueoptional>
            dependency>
    
            <dependency>
                <groupId>org.apache.httpcomponentsgroupId>
                <artifactId>httpclientartifactId>
                <version>4.5.13version>
            dependency>
    
            <dependency>
                <groupId>cn.hutoolgroupId>
                <artifactId>hutool-allartifactId>
                <version>5.8.22version>
            dependency>
    
            
            <dependency>
                <groupId>com.aliyun.ossgroupId>
                <artifactId>aliyun-sdk-ossartifactId>
                <version>3.13.2version>
            dependency>
    
            <dependency>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-starter-testartifactId>
                <scope>testscope>
            dependency>
        dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.bootgroupId>
                    <artifactId>spring-boot-maven-pluginartifactId>
                    <configuration>
                        <excludes>
                            <exclude>
                                <groupId>org.projectlombokgroupId>
                                <artifactId>lombokartifactId>
                            exclude>
                        excludes>
                    configuration>
                plugin>
            plugins>
        build>
    
    project>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80

    application.yml 文件配置

    ali:
      oss:
        #oss end-point
        end-point: 
        #oss access-key-id
        access-key-id: 
        #oss access-key-secret
        access-key-secret: 
        #oss bucket-name
        bucket-name: 
        ali-url: https://${ali.oss.bucket-name}.${ali.oss.end-point}/
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    FileUtil 工具类

    
    import cn.hutool.core.io.file.FileNameUtil;
    import cn.hutool.core.util.IdUtil;
    
    import java.io.File;
    import java.net.URL;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    public class FileUtil {
    
        private static final String projectUrl = System.getProperty("user.dir").replaceAll("\\\\", "/");
    
        public static void deleteFiles(String path) {
            File file = new File(path);
            if (file.exists()) {
                if (file.isDirectory()) {
                    File[] temp = file.listFiles(); //获取该文件夹下的所有文件
                    for (File value : temp) {
                        deleteFile(value.getAbsolutePath());
                    }
                } else {
                    file.delete(); //删除子文件
                }
                file.delete(); //删除文件夹
            }
        }
    
        public static void deleteFile(String path){
            File dest = new File(path);
            if (dest.isFile() && dest.exists()) {
                dest.delete();
            }
        }
    
        public static String getNewFileRootPath(){
            return projectUrl+File.separator+ IdUtil.simpleUUID();
        }
    
        public static String getFileNameFromUrl(String url) {
            Pattern pattern = Pattern.compile("[^/]*$");
            Matcher matcher = pattern.matcher(url);
            if (matcher.find()) {
                return matcher.group();
            }
            return "";
        }
    
        /**
         * 获取扩展名
         * @param urlPath
         * @return {@link String}
         */
        public static String getExtName(String urlPath) {
            String fileName = getFileNameFromUrl(urlPath);
            return FileNameUtil.extName(fileName);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58

    请求配置 RestTemplateConfig

    
    import org.apache.http.client.HttpClient;
    import org.apache.http.client.config.RequestConfig;
    import org.apache.http.config.Registry;
    import org.apache.http.config.RegistryBuilder;
    import org.apache.http.conn.socket.ConnectionSocketFactory;
    import org.apache.http.conn.socket.PlainConnectionSocketFactory;
    import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
    import org.apache.http.impl.client.HttpClientBuilder;
    import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.http.client.ClientHttpRequestFactory;
    import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
    import org.springframework.web.client.RestTemplate;
    
    @Configuration
    public class RestTemplateConfig {
        @Bean
        public RestTemplate restTemplate(ClientHttpRequestFactory requestFactory) {
            return new RestTemplate(requestFactory);
        }
    
        @Bean
        public ClientHttpRequestFactory simpleClientHttpRequestFactory() {
            HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory();
            factory.setReadTimeout(10000);
            factory.setConnectTimeout(10000);
            factory.setHttpClient(httpClient());
            return factory;
        }
    
        /**
         * @return
         */
        @Bean
        public HttpClient httpClient() {
            Registry<ConnectionSocketFactory> registry = RegistryBuilder.<ConnectionSocketFactory>create()
                    .register("http", PlainConnectionSocketFactory.getSocketFactory())
                    .register("https", SSLConnectionSocketFactory.getSocketFactory())
                    .build();
    
            PoolingHttpClientConnectionManager connectionManager = new PoolingHttpClientConnectionManager(registry);
    
            //设置整个连接池最大连接数
            connectionManager.setMaxTotal(500);
    
            //MaxPerRoute路由是对maxTotal的细分,每个主机的并发,这里route指的是域名
            connectionManager.setDefaultMaxPerRoute(200);
            RequestConfig requestConfig = RequestConfig.custom()
                    //返回数据的超时时间
                    .setSocketTimeout(20000)
                    //连接上服务器的超时时间
                    .setConnectTimeout(10000)
                    //从连接池中获取连接的超时时间
                    .setConnectionRequestTimeout(1000)
                    .build();
    
            return HttpClientBuilder.create()
                    .setDefaultRequestConfig(requestConfig)
                    .setConnectionManager(connectionManager)
                    .build();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64

    阿里组件配置

    读取配置类 AliOssProperties

    import lombok.Data;
    import org.springframework.boot.context.properties.ConfigurationProperties;
    import org.springframework.stereotype.Component;
    
    @Component
    @ConfigurationProperties(prefix = "ali.oss")
    @Data
    public class AliOssProperties {
        /**
         * OSS配置信息
         */
        private String endpoint;
    
        private String accessKeyId;
    
        private String accessKeySecret;
    
        private String bucketName;
    
        private String aliUrl;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    OSS组件类 OssComponent

    
    import cn.hutool.core.util.StrUtil;
    import com.aliyun.oss.OSS;
    import com.aliyun.oss.OSSClientBuilder;
    import com.aliyun.oss.model.ObjectMetadata;
    import com.aliyun.oss.model.PutObjectResult;
    import lombok.Getter;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.stereotype.Component;
    
    import javax.annotation.Resource;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Objects;
    
    @Component
    @Slf4j
    @Getter
    public class OssComponent {
    
        @Resource
        private AliOssProperties aliOssProperties;
    
        /* -----------------对外功能---------------- */
    
        /**
         * 单个文件上传(指定文件名(带后缀))
         *
         * @param inputStream 文件
         * @param fileName    文件名(带后缀)
         * @return 返回完整URL地址
         */
        public String uploadFile(String fileDir, InputStream inputStream, String fileName) {
            try {
                this.uploadFile2Oss(fileDir, inputStream, fileName);
                String url = getFileUrl(fileDir, fileName);
                if (url != null && url.length() > 0) {
                    return url;
                }
            } catch (Exception e) {
                e.printStackTrace();
                throw new RuntimeException("获取路径失败");
            }
            return "";
        }
    
        /**
         * 通过文件名获取文完整件路径
         *
         * @param fileUrl 文件名
         * @return 完整URL路径
         */
        public String getFileUrl(String fileDir, String fileUrl) {
            if (fileUrl != null && fileUrl.length() > 0) {
                String[] split = fileUrl.replaceAll("\\\\","/").split("/");
                String url = aliOssProperties.getAliUrl() + fileDir + split[split.length - 1];
                return Objects.requireNonNull(url);
            }
            return null;
        }
    
    
        public boolean deleteFile(String fileDir, String fileName) {
            OSS ossClient = new OSSClientBuilder().build(aliOssProperties.getEndpoint(), aliOssProperties.getAccessKeyId(), aliOssProperties.getAccessKeySecret());
            // 删除文件
            ossClient.deleteObject(aliOssProperties.getBucketName(), fileDir + fileName);
            // 判断文件是否存在
            boolean found = ossClient.doesObjectExist(aliOssProperties.getBucketName(), fileDir + fileName);
            // 如果文件存在则删除失败
    
            return !found;
        }
    
    
    
    
    
        /* -----------内部辅助功能------------------------ */
    
        /**
         * 获取去掉参数的完整路径
         *
         * @param url URL
         * @return 去掉参数的URL
         */
        private String getShortUrl(String url) {
            String[] imgUrls = url.split("\\?");
            return imgUrls[0].trim();
        }
    
    
        /**
         * 上传文件(指定文件名)
         *
         * @param inputStream 输入流
         * @param fileName    文件名
         */
        private void uploadFile2Oss(String fileDir, InputStream inputStream, String fileName) {
            OSS ossClient = new OSSClientBuilder().build(aliOssProperties.getEndpoint(), aliOssProperties.getAccessKeyId(), aliOssProperties.getAccessKeySecret());
            String ret;
            try {
                //创建上传Object的Metadata
                ObjectMetadata objectMetadata = new ObjectMetadata();
                objectMetadata.setContentLength(inputStream.available());
                objectMetadata.setCacheControl("no-cache");
                objectMetadata.setHeader("Pragma", "no-cache");
                String contentType = getContentType(fileName.substring(fileName.lastIndexOf(".")));
                if(StrUtil.isNotEmpty(contentType)){
                    objectMetadata.setContentType(contentType);
                }
                objectMetadata.setContentDisposition("inline;filename=" + fileName);
                //上传文件
                PutObjectResult putResult = ossClient.putObject(aliOssProperties.getBucketName(), fileDir + fileName, inputStream, objectMetadata);
                ret = putResult.getETag();
                if (StrUtil.isEmpty(ret)) {
                    log.error("上传失败,文件ETag为空");
                }
                ossClient.shutdown();
            } catch (IOException e) {
                log.error(e.getMessage(), e);
            } finally {
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    
    
        /**
         * 请求类型
         *
         * @param filenameExtension :
         * @return :
         */
        private static String getContentType(String filenameExtension) {
            if (FileNameSuffixEnum.BMP.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "image/bmp";
            }
            if (FileNameSuffixEnum.GIF.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "image/gif";
            }
            if (FileNameSuffixEnum.JPEG.getSuffix().equalsIgnoreCase(filenameExtension) ||
                    FileNameSuffixEnum.JPG.getSuffix().equalsIgnoreCase(filenameExtension) ||
                    FileNameSuffixEnum.PNG.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "image/jpeg";
            }
            if (FileNameSuffixEnum.HTML.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "text/html";
            }
            if (FileNameSuffixEnum.TXT.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "text/plain";
            }
            if (FileNameSuffixEnum.VSD.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "application/vnd.visio";
            }
            if (FileNameSuffixEnum.PPTX.getSuffix().equalsIgnoreCase(filenameExtension) ||
                    FileNameSuffixEnum.PPT.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "application/vnd.ms-powerpoint";
            }
            if (FileNameSuffixEnum.DOCX.getSuffix().equalsIgnoreCase(filenameExtension) ||
                    FileNameSuffixEnum.DOC.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "application/msword";
            }
            if (FileNameSuffixEnum.XML.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "text/xml";
            }
            if (FileNameSuffixEnum.PDF.getSuffix().equalsIgnoreCase(filenameExtension)) {
                return "application/pdf";
            }
            return "";
        }
    
    
    }
    
    @Getter
    enum FileNameSuffixEnum {
    
        /**
         * 文件后缀名
         */
        BMP(".bmp", "bmp文件"),
        GIF(".gif", "gif文件"),
        JPEG(".jpeg", "jpeg文件"),
        JPG(".jpg", "jpg文件"),
        PNG(".png", "png文件"),
        HTML(".html", "HTML文件"),
        TXT(".txt", "txt文件"),
        VSD(".vsd", "vsd文件"),
        PPTX(".pptx", "PPTX文件"),
        DOCX(".docx", "DOCX文件"),
        PPT(".ppt", "PPT文件"),
        DOC(".doc", "DOC文件"),
        XML(".xml", "XML文件"),
        PDF(".pdf", "PDF文件");
    
        /**
         * 后缀名
         */
        private final String suffix;
    
        /**
         * 描述
         */
        private final String description;
    
        FileNameSuffixEnum(String suffix, String description) {
            this.suffix = suffix;
            this.description = description;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213

    文件服务

    FileService
    public interface FileService {
        String uploadJavaVideo(String url) throws Exception;
    }
    
    • 1
    • 2
    • 3
    FileServiceImpl
    
    import cn.hutool.core.util.IdUtil;
    import com.example.springbootrocketmq.config.OssComponent;
    import com.example.springbootrocketmq.service.FileService;
    import com.example.springbootrocketmq.utils.FileUtil;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.http.HttpMethod;
    import org.springframework.http.MediaType;
    import org.springframework.stereotype.Service;
    import org.springframework.web.client.RequestCallback;
    import org.springframework.web.client.RestTemplate;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import java.util.Arrays;
    
    @Slf4j
    @Service
    public class FileServiceImpl implements FileService {
    
        @Autowired
        private RestTemplate restTemplate;
    
        @Autowired
        private OssComponent ossComponent;
    
        @Override
        public String uploadJavaVideo(String url) throws Exception {
            String extName = FileUtil.getExtName(url);//获取扩展名称
            String fileName = IdUtil.simpleUUID()+"."+extName;
            log.info("fileName:{}",fileName);
            String newFileRootPath = FileUtil.getNewFileRootPath();
            File rootFile = new File(newFileRootPath);
            if(!rootFile.exists()){
                rootFile.mkdirs();
            }
            String toPath = newFileRootPath+ File.separator + fileName;
            try {
                log.info("toPath:{}",toPath);
                uploadBigFile(url,toPath);
                return ossComponent.uploadFile("demo/",new FileInputStream(toPath),fileName);
            } finally {
                FileUtil.deleteFiles(newFileRootPath);
            }
        }
    
        /**
         * 下载文件
         * @param url
         * @param toPath
         * @throws Exception
         */
        public void uploadBigFile(String url, String toPath) throws Exception {
            //定义请求头的接收类型
            RequestCallback requestCallback = request -> request.getHeaders()
                    .setAccept(Arrays.asList(MediaType.APPLICATION_OCTET_STREAM, MediaType.ALL));
            //对响应进行流式处理而不是将其全部加载到内存中
            restTemplate.execute(url, HttpMethod.GET, requestCallback, clientHttpResponse -> {
                Files.copy(clientHttpResponse.getBody(), Paths.get(toPath));
                return null;
            });
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66

    测试 TestController 类

    
    import com.example.springbootrocketmq.service.FileService;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @Slf4j
    @RestController
    @RequestMapping("/")
    public class TestController {
    
        @Autowired
        private FileService fileService;
    
        @GetMapping("/uploadFileToOss")
        public Object uploadJavaVideo(String url) {
            try {
                return fileService.uploadJavaVideo(url);
            }catch (Exception e){
                log.error("上传转码异常,异常原因e:{}",e);
            }
            return null;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    启动服务 用 postman 请求

    在这里插入图片描述

  • 相关阅读:
    【日更】 代理
    计算机竞赛 基于深度学习的人脸专注度检测计算系统 - opencv python cnn
    备战“金九银十”,软件测试功能 / 数据库 /linux/ 接口 / 自动化 / 测试开发面试真题解析
    从0开始学go第七天
    【源码+文档+调试】springboot文化传承小程序的设计与实现小程序源码分享
    m多载波MC-CDMA系统单用户检测方法的研究,对比EGC,MRC,ORC以及MMSE
    Linux系统安装Nginx
    vue:Video.js 快速整合
    Linux项目自动化构建工具-make/Makefile
    Java中栈
  • 原文地址:https://blog.csdn.net/laow1314/article/details/133819866