摘要: ## 介绍 - javax.sql.DataSource - public interface DataSource extends CommonDataSource, Wrapper ## API ### public - getConnection - `Connection` - setLog 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(18) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - javax.sql.rowset.CachedRowSet - public interface CachedRowSet extends RowSet, Joinable ## API ### public - populate - 将指定的结果集中的数据填充到被缓存的行集中 - 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - javax.sql.RowSet - public interface RowSet extends ResultSet - 行集 - 和 ResultSet 不同,不需要始终保持与数据库的连接 - `CachedRowSet` 允许在断开连接的状态下执行相关操作 - `WebRow 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(18) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.util.Locale - public final class Locale implements Cloneable, Serializable - `locale` 由多达 5 个部分构成: 1. 一种语言(language),由 2 个或 3 个小写字母表示,例如 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(53) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.text.NumberFormat - public abstract class NumberFormat extends Format - 数字格式 - 高度依赖于 `Locale` - 可以对 `java.text` 包中的数字值进行格式化和解析 ## API ### 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.text.Collator - public abstract class Collator implements java.util.Comparator, Cloneable - 排序和规范化 ## API ### 常量 #### Strength 强度 - PRIMA 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.text.DecimalFormat - public class DecimalFormat extends NumberFormat ## API ### 常量 - INTEGER_FIELD : 0 - FRACTION_FIELD : 1 ### 构造器 - Dec 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(55) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.text.DecimalFormatSymbols - public class DecimalFormatSymbols implements Cloneable, Serializable ## API ### static - getInstance - getAva 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(14) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.text.Format - public abstract class Format implements Serializable, Cloneable ## API ### public - format - formatToCharacterIterator - pa 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.text.MessageFormat - public class MessageFormat extends Format ## API ### 构造器 - MessageFormat(String pattern) - MessageFormat(String patt 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.util.Currency - public final class Currency implements Serializable - ISO 4217 货币 ## API ### static - getInstance - `Currency getInstance 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(16) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.util.ResourceBundle - public abstract class ResourceBundle - 资源包 ## API ### static - clearCache - getBundle - ResourceBundle getBundle(St 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.lang.annotation.Annotation - public interface Annotation - 所有的注解接口都隐式地扩展自此接口。这个接口是一个常规接口,不是一个注解接口 ## API - annotationType - `Class annota 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.lang.annotation.RetentionPolicy - public enum RetentionPolicy - 保留策略 - 配合 `@Retention` 元注解使用 ## API ### enum - SOURCE - 不包括在类文件中的注解 - CLA 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.lang.annotation.Inherited - 声明 ```java @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) public @inter 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.lang.annotation.Repeatable - 声明 ```java @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) public @inte 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(35) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.lang.Deprecated - 声明 ```java @Documented @Retention(RetentionPolicy.RUNTIME) @Target(value={CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, P 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.lang.SuppressWarnings - 声明 ```java @Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE, MODULE}) @Retention(RetentionPol 阅读全文
posted @ 2023-08-24 10:25 流星<。)#)))≦ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.security.MessageDigest - public abstract class MessageDigest extends MessageDigestSpi ## API ### static - getInstance - `MessageDigest ge 阅读全文
posted @ 2023-08-24 10:24 流星<。)#)))≦ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.io.FileWriter ```java public class FileWriter extends OutputStreamWriter ``` - 用于写出文件字符流 - 可以指定编码 ## API ### 构造器 ```java FileWriter(Strin 阅读全文
posted @ 2023-08-24 10:24 流星<。)#)))≦ 阅读(9) 评论(0) 推荐(0) 编辑