上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
摘要: 1.准备工作 1)下载mail-1.4.jar 2) 下载activation-1.1.jar 如果是maven项目,引入依赖: <!-- https://mvnrepository.com/artifact/javax.mail/mail --> <dependency> <groupId>jav 阅读全文
posted @ 2020-03-16 15:27 漂渡 阅读(1777) 评论(0) 推荐(0) 编辑
摘要: 1.数组实现的栈 #include <stdio.h> #include <string.h> #include <stdlib.h> #define MAXSIZE 5 /** *数组实现的栈,缺点,容量固定 **/ typedef struct{ int data[MAXSIZE]; int i 阅读全文
posted @ 2020-02-16 14:10 漂渡 阅读(376) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> //#define LEN sizeof(LinkedList); typedef struct Student{ int score; char name[10]; struct 阅读全文
posted @ 2020-02-15 14:26 漂渡 阅读(769) 评论(0) 推荐(0) 编辑
摘要: 1.工具类基类(配置类):ExecutorSchdule 1 public interface ExecutorSchdule { 2 3 //corePoolSize 表示允许线程池中允许同时运行的最大线程数。 4 int corePoolSize = 40; 5 6 //maximumPoolS 阅读全文
posted @ 2020-01-20 13:51 漂渡 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 目标:测试option的过滤,链式操作: 代码: 阅读全文
posted @ 2019-04-30 13:32 漂渡 阅读(1474) 评论(0) 推荐(0) 编辑
摘要: package com.java.zxf.util; import javax.imageio.ImageIO; import java.awt.*; import java.awt.image.BufferedImage; import java.io.FileOutputStream; import java.io.IOException; import java.... 阅读全文
posted @ 2019-02-25 15:19 漂渡 阅读(806) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/3e0b213ab03d 阅读全文
posted @ 2019-02-20 14:58 漂渡 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1.原代码: <body> <div id="showalladdableavms" style="display: none;width:100%"> <table id="demo" lay-filter="test"></table> </div> --> </body> <script> f 阅读全文
posted @ 2019-01-18 10:52 漂渡 阅读(14328) 评论(3) 推荐(0) 编辑
摘要: 1.文件上传类 1 package com.java.ftp; 2 3 import java.io.IOException; 4 import javax.servlet.ServletException; 5 import javax.servlet.http.HttpServlet; 6 im 阅读全文
posted @ 2018-12-13 09:26 漂渡 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 直接上代码: 依赖: 阅读全文
posted @ 2018-12-12 09:16 漂渡 阅读(302) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页