摘要:
## 介绍 - java.net.InetAddress - public class InetAddress implements java.io.Serializable - 因特网地址,是一串数字表示的主机地址(IPv4 是 4 字节,IPv6 是 16 字节) - 支持在主机名和因特网地址之 阅读全文
摘要:
## 介绍 - java.nio.channels.SocketChannel - public abstract class SocketChannel extends AbstractSelectableChannel implements ByteChannel, ScatteringByte 阅读全文
摘要:
## 介绍 - java.nio.channels.Channels ## API ### static - newInputStream - newOutputStream - newChannel - `ReadableByteChannel newChannel(InputStream in) 阅读全文
摘要:
## 介绍 - java.nio.CharBuffer - public abstract class CharBuffer extends Buffer implements Comparable, Appendable, CharSequence, Readable - char 缓冲区,内部是 阅读全文
摘要:
## 介绍 - java.nio.ByteBuffer - public abstract class ByteBuffer extends Buffer implements Comparable - 最常用的 `Buffer` 子类 ## API ### static - allocateDir 阅读全文
摘要:
## 介绍 - java.nio.Buffer - public abstract class Buffer - 缓冲区都具有 - `mark` ,**可选的标记**,用于重复一个读入或写出操作,默认 -1 - `position` ,**读写位置**,下一个值将在此进行读写,默认 0 - `lim 阅读全文
摘要:
## 介绍 - `java.nio.file.Path` - `public interface Path extends Comparable, Iterable, Watchable` - 不推荐使用 `Paths` 工具类,相关方法在 Path 接口中都有静态方法 - 代表系统相关的文件路径, 阅读全文
摘要:
## 介绍 - java.util.regex.Pattern - public final class Pattern implements java.io.Serializable - 正则表达式的编译表示 ## API ### 常量 flag - UNIX_LINES - 启用 UNIX 行模 阅读全文
摘要:
## 介绍 - java.util.regex.Matcher - public final class Matcher implements MatchResult - 通过解释 `Pattern` 对字符序列执行匹配操作的引擎 - 匹配器 - 关联方法 `Pattern.matches` ## 阅读全文
摘要:
## 介绍 - `java.io.Reader` - `public abstract class Reader implements Readable, Closeable` ## API - read - `abstract int read(char[] cbuf, int off, int 阅读全文