『 파일 다운로드(ResponseEntity사용) 』
<소스코드>
@Controller
public class DownloadController {
// ResponseEntity를 사용하는 경우
@RequestMapping(value="/downloadFile2", method = {RequestMethod.GET} )
public ResponseEntity<String> downloadFile2() throws IOException {
// HTTP헤더 지정
HttpHeaders headers = new HttpHeaders();
headers.setContentType(new MediaType("application", "octet-stream"));
headers.set("Content-Disposition", String.format("filename=\"%s\"", "sample.txt"));
String data = "HelloWorld!";
return new ResponseEntity<String>(data, headers, HttpStatus.OK);
}
}
'자바 > JAVA...Spring' 카테고리의 다른 글
Spring 3.2 & MyBatis] JSON형식 취득하는 경우 (0) | 2015.12.11 |
---|---|
Spring 3.2 & MyBatis] 파일 다운로드(Writer/OutputStream사용) (0) | 2015.12.10 |
Spring 3.2 & MyBatis] 파일 다운로드(HttpServletResponse사용) (0) | 2015.12.09 |
Spring 3.2 & MyBatis] Form으로부터 값을 받아, 세션에 저장하는 경우 (0) | 2015.12.09 |
Spring 3.2 & MyBatis] Form으로부터 값을 받는 경우 (0) | 2015.12.09 |