-
ContourUtils
等值线的工具类,其中包括温度、湿度、风速风向等(Tools for contours, including temperature, humidity, wind speed and direction, etc.)
- 2019-05-23 16:48:49下载
- 积分:1
-
NIOAccess
This class is used via J N I by code in frameworks/base Source Code for Andriod.
- 2013-12-16 11:37:02下载
- 积分:1
-
8972103
ssm,spring4,3,mybatis3,4整合实列()
- 2018-01-26 12:48:44下载
- 积分:1
-
用java开发的一个简单的ftp,支持简单的文件传送,下载,运行时下载一个ftp服务器,然后就可以进行文件的传送了。也可以登陆到某个服务器进行文件的传输,这时需...
用java开发的一个简单的ftp,支持简单的文件传送,下载,运行时下载一个ftp服务器,然后就可以进行文件的传送了。也可以登陆到某个服务器进行文件的传输,这时需要输入服务器IP和端口号-Java development using a simple ftp, support for simple file transfer, download, run-time to download a ftp server, then the document can be sent. Can also visit to a server for file transfers, then need to enter the server IP and port number
- 2023-01-07 00:15:03下载
- 积分:1
-
ServerSocket
Constructs a new {@code ServerSocket} instance which is not bound to any port. The default number of pending connections may be backlogged.
- 2013-12-11 13:13:40下载
- 积分:1
-
一个可以显示系统时间的小程序
一个可以显示系统时间的小程序-display system can be a time of small programs
- 2022-01-26 02:40:06下载
- 积分:1
-
java_Factory
java 设计模式 实例 Factory(java Design pattern Factory)
- 2015-10-30 22:22:57下载
- 积分:1
-
候鸟优化邝
候鸟优化算法 (MBO MBO)是一种基于邻域搜索技术的算法,通过模拟候鸟迁徙过程中的V 字形(人字形)飞行编队以减少能量损耗进行优化。候鸟在迁徙的时候,我们常常会见到候鸟有序地排成队列。V 字形队列是最常见的候鸟进行长距离飞行的队列,当候鸟排成V 字形队列时,领头的候鸟有导航的作用,其他的候鸟在拍动翅膀的时候会带动周围的气流,从而减少同伴飞行时的阻力,同时可以让鸟群通过保持视觉接触避免相互碰撞。 该算法由Ekrem Duman于2012年在文章Migrating Birds Optimization: A new metaheuristic approachand its performance on quadratic assignment problem被提出,用来求解二次规划问题。
- 2022-04-15 11:43:49下载
- 积分:1
-
myStudent
自己编写的简单的学生学籍信息管理系统软件。可以简单管理学生学籍信息。(His status as a simple student written information management system software. Can simple management status as a student information.
)
- 2012-05-18 10:50:34下载
- 积分:1
-
java分页类
package xiaojiulong.common.tool;
import java.io.Serializable;
/**
*
* @author : 肖九龙(NineDragon)
* @createDate :2016年11月21日 上午10:58:35
* @description:【分页类】
*/
@SuppressWarnings("serial")
public class PageDto implements Serializable{
/**
*
*/
private static final int DEFAULT_PAGE = 1;
private static final int DEFAULT_PAGE_SIZE = 8;
private long total = -1;//总条数
private int page = DEFAULT_PAGE;//当前页
private int pageSize = DEFAULT_PAGE_SIZE;//每页数
private long totalPage;//总页数
public long getTotal() {
return total;
}
public void setTotal(long total) {
if(total
- 2023-04-13 21:30:03下载
- 积分:1