摘要:
集合框架中整体的架构分为2类:Collection接口 和 Map接口 Collection接口:用于存储单个对象的 典型的实现类: List >ArryList LinkedList Set >HashSet ThreeSet Map接口:用于存储K-V键值对双对象的 典型的实现类: HashMa 阅读全文
posted @ 2024-03-19 17:06
yanzi-javaFullStack
阅读(25)
评论(0)
推荐(0)
public static void main(String[] args) throws GeneralSecurityException { // 收件人电子邮箱 String to = "收件人电子邮箱"; // 发件人电子邮箱 String from = "发件人电子邮箱"; // 指定发送 阅读全文
public static void main(String[] args) throws IOException { //读取图片文件信息 File file=new File("C:\Users\Administrator\Desktop\1.png"); //将图片文件转为 BufferedI 阅读全文