-
[JAVA.7]NIO2 노트 시작 합니다.JAVA/NIO2 2013. 11. 12. 09:20728x90
일주일에 한개씩 JAVA7에서 제공하는 NIO2에 대하여 공부한 다음 노트에
정리를 시작 합니다.
맛보기 NIO2
기존 방식
import java.io.FIle; .... File file = new File("index.html");
NIO2
import java.nio.fIle.Path; import java.nio.fIle.Paths; .... Path path = Paths.get("index.html");
728x90'JAVA > NIO2' 카테고리의 다른 글
[NIO.2]Copying a File or Directory (0) 2013.11.25 [NIO.2]Deleting a File or Directory (0) 2013.11.25 [NIO.2]Checking a File or Directory (0) 2013.11.25 [NIO.2]Files Class (0) 2013.11.20 [NIO.2]The Path Class (0) 2013.11.13