Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 교육법
- 앵커멤버
- getChannel()
- git
- SQLSTATE=42705
- 진경혜
- XACT_STATE
- 홈스쿨링
- ERROR_MESSAGE
- 배치
- 요약
- MSSQL
- 프론트컨트롤러
- 요청매핑
- renameTo
- 자바
- SQL
- XWPF
- HWPF
- 아이
- transferTo
- 튜닝
- dm_exec_requests
- java
- spring
- TRANCOUNT
- 재귀멤버
- 디스패처서블릿
- 스프링
- 함수
Archives
- Today
- Total
필기노트
JAVA FileChannel을 이용한 파일전송 본문
반응형
파일 전송을 할 때 FileChannel이 가장 효율적이다.
import java.nio.channels.FileChannel;
public class FileMove {
public static void main(String[] args) throws IOException {
File myFile = new File("C:"+File.separator+"MyJava"+File.separator+"my.bin");
File reFile = new File("C:"+File.separator+"YourJava"+File.separator+"my.bin");
if(myFile.exists()==false)
{
System.out.println("원본 파일이 준비되어 있지 않습니다.");
return;
}
FileInputStream fileInputStream = new FileInputStream(myFile);
FileOutputStream fileOutputStream = new FileOutputStream(reFile);
FileChannel fcin = fileInputStream.getChannel();
FileChannel fcout = fileOutputStream.getChannel();
long size = fcin.size();
fcin.transferTo(0, size, fcout);
if(reFile.exists()==true)
System.out.println("파일 전송에 성공하였습니다.");
else
System.out.println("파일 전송에 실패하였습니다.");
fcin.close();
fcout.close();
}
}
반응형
'JAVA' 카테고리의 다른 글
자바 File 클래스, renameTo (0) | 2023.01.20 |
---|---|
JAVA 소켓 통신(Socket, Server, Client) (1) | 2023.01.19 |
map 반복 및 람다, 스트림 (0) | 2022.12.24 |
JAVA Apache POI로 Word 치환하기 (0) | 2022.12.24 |
자바 FileInputStream, FileOutputStream (0) | 2022.07.20 |
Comments