FileChannel을 이용한 파일 복사
public class FileCopy { public static void main(String[] args) { try { Path from = Paths.get("c:/Temp/dir/house.jpg"); Path to = Paths.get("c:/Temp/dir/house2.jpg"); FileChannel fcFrom = FileChannel.open(from, StandardOpenOption.READ); FileChannel fcTo = FileChannel.open(to, StandardOpenOption.CREATE, StandardOpenOption.WRITE); ByteBuffer bb = ByteBuffer.allocateDirect(1024); int byteCount; whil..
배움과 복습
2017. 9. 22. 09:12
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- NVL2()
- DECODE()
- 복수행 함수
- 데이터 딕셔너리
- FileChannel
- Interface
- 중첩 클래스
- 타입변환과 다형성
- 계층형 쿼리
- CLASS
- implements
- Generic Type
- NVL()
- tables in htmll
- casring
- SQL Operator
- 테이블 데이터 복사
- 멤버 클래스
- z-dindex
- IS RECORD
- GROUP BY절
- hierarchical query
- IN(var1 var2 var3)
- 로컬 클래스
- DI(의존성 주입)
- !(not)
- MONTH_BETWEEN
- Maven Project
- 상속
- SELECT절 명령어
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함