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
- 자바
- 아이
- 홈스쿨링
- SQL
- 함수
- 요청매핑
- HWPF
- ERROR_MESSAGE
- 진경혜
- 요약
- XWPF
- getChannel()
- dm_exec_requests
- 프론트컨트롤러
- MSSQL
- 앵커멤버
- transferTo
- XACT_STATE
- 재귀멤버
- java
- 스프링
- renameTo
- 디스패처서블릿
- TRANCOUNT
- git
- 튜닝
- 배치
- SQLSTATE=42705
- 교육법
- spring
Archives
- Today
- Total
목록getChannel() (1)
필기노트
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; } F..
JAVA
2023. 1. 4. 07:03