외부 서버에서 파일을 ByteArrayInputStream으로 받아서 서버에 물리적으로 저장하는 방법

 

 

void org.apache.commons.io.FileUtils.copyInputStreamToFile(InputStream source, File destination) throws IOException

 

아파치 커먼 IOd에 있는 FileUtils 클래스를 이용하여 저장하면 된다.

 

FileUtils.copyInputStreamToFile(인풋스트림, 파일객체);

+ Recent posts