上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 92 下一页
摘要: ## 介绍 - `java.io.OutputStream` - `public abstract class OutputStream implements Closeable, Flushable` - `FilterOutputStream` 是典型的装饰器设计模式,很多子类继承这个类,提供额 阅读全文
posted @ 2023-08-29 17:04 流星<。)#)))≦ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - `java.io.InputStream` - `public abstract class InputStream implements Closeable` - `FilterInputStream` 是典型的装饰器设计模式,很多子类继承这个类,提供额外的功能 ```java p 阅读全文
posted @ 2023-08-29 17:04 流星<。)#)))≦ 阅读(20) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.io.FileInputStream - public class FileInputStream extends InputStream - 提供附着在一个磁盘文件上的输入流 - 在 java.io 中的类都将相对路径名解释为以用户工作目录开始,可以通过调用 `Syste 阅读全文
posted @ 2023-08-29 17:04 流星<。)#)))≦ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.net.URLConnection - public abstract class URLConnection - 如果想从某个 Web 资源获取更多信息,那么应该使用 URLConnection 类,通过它能够得到比基本的 URL 类更多的控制功能 ## API ### 阅读全文
posted @ 2023-08-29 17:03 流星<。)#)))≦ 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.net.URLDecoder - public class URLDecoder - URL 解码器 - 对应的 URL 编码器类是 `URLEncoder` ### URL 编码模式 - 保留字符 A 到 Z 、a 到 z 、0 到 9 ,以及 `.` `-` `~` ` 阅读全文
posted @ 2023-08-28 09:47 流星<。)#)))≦ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.net.URLEncoder - public class URLEncoder - URL 编码器 - 对应的 URL 解码器类是 `URLDecoder` ### URL 编码模式 - 保留字符 A 到 Z 、a 到 z 、0 到 9 ,以及 `.` `-` `~` ` 阅读全文
posted @ 2023-08-28 09:47 流星<。)#)))≦ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 `java.lang.Throwable` `public class Throwable implements Serializable` Error 和 Exception 的父类,只有该类型才可以被 throw 和 catch 不是 `RuntimeException` 或 `Er 阅读全文
posted @ 2023-08-28 09:47 流星<。)#)))≦ 阅读(18) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - `java.lang.StringBuilder` - `public final class StringBuilder extends AbstractStringBuilder implements java.io.Serializable, Comparable, CharS 阅读全文
posted @ 2023-08-28 09:47 流星<。)#)))≦ 阅读(18) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - `java.lang.Enum` - `public abstract class Enum> implements Constable, Comparable, Serializable` - 所有枚举类的父类 - 可序列化 - 枚举类可以实现接口,不能继承 ## API ### 阅读全文
posted @ 2023-08-28 09:47 流星<。)#)))≦ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - `java.lang.Record` - `public abstract class Record` - 所有纪录类的父类 ## API - equals - hashCode - toString 阅读全文
posted @ 2023-08-28 09:47 流星<。)#)))≦ 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 92 下一页