Spring boot: 读取服务端指定位置文件并返回_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Spring boot: 读取服务端指定位置文件并返回

Spring boot: 读取服务端指定位置文件并返回

 2018/4/16 19:06:38  冰糖葫芦有点酸  程序员俱乐部  我要评论(0)
  • 摘要:importorg.apache.commons.io.IOUtils;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.core.io.ResourceLoader;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.core.io
  • 标签:服务端 文件 Spring 服务 定位
class="java" name="code">
import org.apache.commons.io.IOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ResourceLoader;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ResourceLoader;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {
    
    @Autowired
    ResourceLoader loader;

    // get image
    @RequestMapping(value="/getImage", produces = MediaType.IMAGE_JPEG_VALUE)
    public @ResponseBody byte[] getImage() {
        // specify image path
        String imagePath = "/usr/local/share/image/test.jpg"; 

        return IOUtils.toByteArray(loader.getResource("file:" + imagePath).getInputStream());
    }
    
    // load static resource of project
    @RequestMapping(value="/getImage", produces = MediaType.IMAGE_JPEG_VALUE)
    public @ResponseBody byte[] getImage() {
        // 假设静态资源目录结构如附件Screenshot_1所示
        return IOUtils.toByteArray(loader.getResource("classpath:static/image/test.png").getInputStream());
    }


    // download file form server
    @GetMapping("/getFile")
    public ResponseEntity<byte[]> getFile() {
        // specify file path
        String filePath = "/usr/local/share/audio/test.mp3";

        byte[] body = IOUtils.toByteArray(loader.getResource("file:" + filePath).getInputStream());
	String fileName = filePath.substring(filePath.lastIndexOf('/')+1, filePath.length());
	HttpHeaders headers=new HttpHeaders();
	headers.add("Content-Disposition", "attachment;filename="+fileName);

	return new ResponseEntity(body, headers, HttpStatus.OK);
    }
}



  • 大小: 6 KB
  • 查看图片附件
上一篇: 甲骨文java专家告诉你,Java培训机构靠谱吗? 下一篇: 没有下一篇了!
发表评论
用户名: 匿名