Downloadable 추가, download(...) 수정
parent
5b16aead29
commit
0fb1d99aa6
@ -0,0 +1,157 @@
|
|||||||
|
package cokr.xit.foundation;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.net.URLConnection;
|
||||||
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
|
/**다양한 유형의 파일의 다운로드를 지원하기 위한 클래스
|
||||||
|
* @author mjkhan
|
||||||
|
*/
|
||||||
|
public class Downloadable {
|
||||||
|
/**지정한 파일을 Downloadable로 변환하여 반환한다.
|
||||||
|
* @param file 파일
|
||||||
|
* @return Downloadable
|
||||||
|
*/
|
||||||
|
public static Downloadable create(File file) {
|
||||||
|
String filename = file.getName();
|
||||||
|
return new Downloadable()
|
||||||
|
.setFilename(filename)
|
||||||
|
.setContentType(URLConnection.guessContentTypeFromName(filename))
|
||||||
|
.setLength(file.length())
|
||||||
|
.setWriter(out -> {
|
||||||
|
try (FileInputStream input = new FileInputStream(file)) {
|
||||||
|
input.transferTo(out);
|
||||||
|
} catch (Exception e) {
|
||||||
|
Assert.runtimeException(e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**지정한 InputStream을 Downloadable로 변환하여 반환한다.
|
||||||
|
* 결과로 받은 Downloadable은 파일이름을 지정해야 한다.
|
||||||
|
* @param inputStream InputStream
|
||||||
|
* @return Downloadable
|
||||||
|
*/
|
||||||
|
public static Downloadable create(InputStream inputStream) {
|
||||||
|
try {
|
||||||
|
return new Downloadable()
|
||||||
|
.setContentType(URLConnection.guessContentTypeFromStream(inputStream))
|
||||||
|
.setWriter(out -> {
|
||||||
|
try (InputStream input = inputStream) {
|
||||||
|
input.transferTo(out);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw Assert.runtimeException(e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw Assert.runtimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String
|
||||||
|
charset,
|
||||||
|
filename,
|
||||||
|
contentType,
|
||||||
|
disposition;
|
||||||
|
private Long length;
|
||||||
|
private Consumer<OutputStream> writer;
|
||||||
|
|
||||||
|
/**문자셋을 반환한다. 디폴트는 UTF-8
|
||||||
|
* @return 문자셋
|
||||||
|
*/
|
||||||
|
public String getCharset() {
|
||||||
|
return Assert.ifEmpty(charset, "UTF-8");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**문자셋을 설정한다.
|
||||||
|
* @param charset 문자셋
|
||||||
|
* @return 현재 Downloadable
|
||||||
|
*/
|
||||||
|
public Downloadable setCharset(String charset) {
|
||||||
|
this.charset = charset;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**파일이름을 반환한다.
|
||||||
|
* @return 파일이름
|
||||||
|
*/
|
||||||
|
public String getFilename() {
|
||||||
|
return Assert.notEmpty(filename, "filename");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**파일이름을 설정한다.
|
||||||
|
* @param filename 파일이름
|
||||||
|
* @return 현재 Downloadable
|
||||||
|
*/
|
||||||
|
public Downloadable setFilename(String filename) {
|
||||||
|
this.filename = filename;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**contentType을 반환한다. 디폴트는 application/octet-stream
|
||||||
|
* @return contentType
|
||||||
|
*/
|
||||||
|
public String getContentType() {
|
||||||
|
return Assert.ifEmpty(contentType, "application/octet-stream");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**contentType을 설정한다.
|
||||||
|
* @param contentType contentType
|
||||||
|
* @return 현재 Downloadable
|
||||||
|
*/
|
||||||
|
public Downloadable setContentType(String contentType) {
|
||||||
|
this.contentType = contentType;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**disposition을 반환한다. 디폴트는 attachment
|
||||||
|
* @return disposition
|
||||||
|
*/
|
||||||
|
public String getDisposition() {
|
||||||
|
return Assert.ifEmpty(disposition, "attachment");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**disposition을 설정한다.
|
||||||
|
* @param disposition disposition
|
||||||
|
* @return 현재 Downloadable
|
||||||
|
*/
|
||||||
|
public Downloadable setDisposition(String disposition) {
|
||||||
|
this.disposition = disposition;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**파일길이를 반환한다.
|
||||||
|
* @return 파일길이
|
||||||
|
*/
|
||||||
|
public Long getLength() {
|
||||||
|
return length;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**파일길이를 설정한다.
|
||||||
|
* @param length 파일길이
|
||||||
|
* @return 현재 Downloadable
|
||||||
|
*/
|
||||||
|
public Downloadable setLength(Long length) {
|
||||||
|
this.length = length;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**파일데이터를 저장할 함수를 설정한다.
|
||||||
|
* @param writer 파일데이터를 저장할 함수
|
||||||
|
* @return 현재 Downloadable
|
||||||
|
*/
|
||||||
|
public Downloadable setWriter(Consumer<OutputStream> writer) {
|
||||||
|
this.writer = writer;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**파일데이터를 지정한 스트림에 저장한다.
|
||||||
|
* @param out OutputStream
|
||||||
|
*/
|
||||||
|
public void write(OutputStream out) {
|
||||||
|
Assert.notEmpty(writer, "writer").accept(out);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue