DownloadView, XLSView 수정
parent
1ab36fe80e
commit
bd5cdeef18
@ -1,15 +1,145 @@
|
||||
package cokr.xit.base.file;
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.File;
|
||||
import java.io.InputStream;
|
||||
import java.net.URLConnection;
|
||||
|
||||
public interface Downloadable {
|
||||
String getFilename();
|
||||
import cokr.xit.foundation.Assert;
|
||||
|
||||
String getContentType();
|
||||
public class Downloadable {
|
||||
private Object file;
|
||||
private String
|
||||
charset,
|
||||
filename,
|
||||
contentType,
|
||||
disposition;
|
||||
private Number length;
|
||||
|
||||
String getDisposition();
|
||||
/**파일을 반환한다.
|
||||
* @return 파일
|
||||
*/
|
||||
public Object getFile() {
|
||||
return file;
|
||||
}
|
||||
|
||||
/**파일을 설정한다.
|
||||
* @param file 파일
|
||||
* @return 현재 Downloadable
|
||||
*/
|
||||
public Downloadable setFile(Object file) {
|
||||
this.file = file;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**문자셋을 반환한다.
|
||||
* @return 문자셋
|
||||
*/
|
||||
public String getCharset() {
|
||||
return Assert.ifEmpty(charset, "UTF-8");
|
||||
}
|
||||
|
||||
Number getLength();
|
||||
/**문자셋을 설정한다.
|
||||
* @param charset 문자셋
|
||||
* @return 현재 Downloadable
|
||||
*/
|
||||
public Downloadable setCharset(String charset) {
|
||||
this.charset = charset;
|
||||
return this;
|
||||
}
|
||||
|
||||
void write(OutputStream out);
|
||||
/**파일이름을 반환한다.
|
||||
* @return 파일이름
|
||||
*/
|
||||
public String getFilename() {
|
||||
if (Assert.isEmpty(filename)) {
|
||||
if (file instanceof File)
|
||||
filename = ((File)file).getName();
|
||||
if (file instanceof FileInfo)
|
||||
filename = ((FileInfo)file).getName();
|
||||
}
|
||||
return Assert.notEmpty(filename, "filename");
|
||||
}
|
||||
|
||||
/**파일이름을 설정한다.
|
||||
* @param filename 파일이름
|
||||
* @return 현재 Downloadable
|
||||
*/
|
||||
public Downloadable setFilename(String filename) {
|
||||
this.filename = filename;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**contentType을 반환한다.
|
||||
* @return contentType
|
||||
*/
|
||||
public String getContentType() {
|
||||
if (Assert.isEmpty(contentType))
|
||||
try {
|
||||
if (file instanceof InputStream) {
|
||||
InputStream input = (InputStream)file;
|
||||
contentType = URLConnection.guessContentTypeFromStream(input);
|
||||
}
|
||||
if (file instanceof File) {
|
||||
File file = (File)this.file;
|
||||
contentType = URLConnection.guessContentTypeFromName(file.getName());
|
||||
}
|
||||
if (file instanceof FileInfo) {
|
||||
FileInfo fileInfo = (FileInfo)file;
|
||||
contentType = fileInfo.getMimeType();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
throw Assert.runtimeException(e);
|
||||
}
|
||||
|
||||
return Assert.ifEmpty(contentType, "application/octet-stream");
|
||||
}
|
||||
|
||||
/**contentType을 설정한다.
|
||||
* @param contentType contentType
|
||||
* @return 현재 Downloadable
|
||||
*/
|
||||
public Downloadable setContentType(String contentType) {
|
||||
this.contentType = contentType;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**disposition을 반환한다.
|
||||
* @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 Number getLength() {
|
||||
if (file instanceof File) {
|
||||
File file = (File)this.file;
|
||||
length = file.length();
|
||||
}
|
||||
if (file instanceof FileInfo) {
|
||||
FileInfo fileInfo = (FileInfo)this.file;
|
||||
length = fileInfo.getSize();
|
||||
}
|
||||
return length;
|
||||
}
|
||||
|
||||
/**파일길이를 설정한다.
|
||||
* @param length 파일길이
|
||||
* @return 현재 Downloadable
|
||||
*/
|
||||
public Downloadable setLength(Number length) {
|
||||
this.length = length;
|
||||
return this;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue