IO
ljz2016
这个作者很懒,什么都没留下…
展开
-
nio(三)--文件读取和写入
读取: Path p4=Paths.get("E:\\版本控制1\\服务端\\2.txt" ); try (BufferedReader reader=Files.newBufferedReader(p4, StandardCharsets.UTF_8)){ String line; while ((line=reader.readLin原创 2017-12-06 15:43:40 · 297 阅读 · 0 评论 -
nio(四)--socket与channel
NetWorkChannel: SelectorProvider provider=SelectorProvider.provider(); NetworkChannel socketChannel=provider.openSocketChannel(); SocketAddress address=new InetSocketAddress(3080);原创 2017-12-08 15:58:06 · 420 阅读 · 0 评论 -
NIO(一)--Path的使用
Path listing= Paths.get("E:\\版本控制\\v1.0.rar"); System.out.println("file name:"+listing.getFileName()); System.out.println("numbers:"+listing.getNameCount()); System.out.println(原创 2017-12-05 10:27:06 · 317 阅读 · 0 评论 -
NIO(二)--file与path的结合使用
public static void main(String[] args) throws IOException { Path p4=Paths.get("E:\\版本控制\\服务端" ); Files.walkFileTree(p4,new FindFile());} private static class FindFile extends SimpleFileVisit原创 2017-12-05 10:29:24 · 305 阅读 · 0 评论 -
spring源码(四)--ClassPathResource
类继承层次图: 类名 作用 InputStreamSource 定义了获取InputStream的方法 Resource 定义了资源属性的获取方法 AbstractResource 对Resource方法做了实现 AbstractResolvingResource 对AbstractResource 的方法做了覆盖 Cl...原创 2018-09-12 15:28:16 · 9075 阅读 · 0 评论 -
BIO,NIO,AIO编程
传统BIO编程服务端:public class TimeServer { public static void main(String[] args) throws IOException { int port=8000; if (args!=null && args.length>0){ try { ...原创 2019-03-07 16:37:03 · 121 阅读 · 0 评论