-
JfreeChart1.10
资源描述java web 柱状图,饼图,适合做统计报表
- 2022-01-21 21:34:47下载
- 积分:1
-
用jsp写的一个实例商业管理系统
用jsp写的一个web开发小实例,内容为南昌大学商业管理系统,包括基本的功能:查看,添加,会员管理,账号登录,用sql server写的数据库表,属于以讹五脏俱全的小麻雀类型。
- 2022-02-12 16:09:34下载
- 积分:1
-
JAVA坦克大战源码包
JAVA语言是是近年来随着各种不同技术的发展,尤其是编程语言飞速发展而诞生的一项新的开发语言。随着信息技术的飞速发展,计算机的使用也日渐普及,本文从实际应用出发,向大家介绍坦克大战游戏的设计与实现。本文所介绍的坦克大战游戏是基于JAVA平台,用Eclipse开发的一款休闲类游戏。玩家可以控制坦克保护自己的基地,获取小道具,歼灭敌人坦克来获胜。论文中介绍了游戏的总体设计思路和开发游戏的多线程、低级图形界面的使用。本论文介绍了坦克大战的历史、JAVA的相关技术及本程序的结构分析和具体功能的实现。 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-10-19 22:15:04下载
- 积分:1
-
mybatis 自动生成
资源描述mybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的servicemybatis 自动生成 所需的service
- 2022-05-16 08:50:59下载
- 积分:1
-
Sliding Puzzle Game By Java
Numeric Sliding Puzzle is a simple type of game where a user clicks on a sliding tile (containing a number)
in order to move it to another location. A tile can only be moved to another location if it is neighbour to a
blank tile. The game continues until all the tiles are in the correct order; e.g. for a 3*3 size puzzle, the correct
order of the tiles is blank tile, 1, 2, 3, 4, 5, 6, 7, 8.
- 2022-01-25 23:42:01下载
- 积分:1
-
Android AAC-股票挂鈎存款
利用Andorid4.2及以上的系统自带的aac_ELD接口进行音频文件的编码,目前支持44.1kHz采样。研究ELD的朋友可以直接使用它进行编码处理,也可用来和自己优化后的eld效果进行比较。
- 2022-03-10 06:29:04下载
- 积分:1
-
I2C扫描器代码为Arduino
应用背景这个库允许你与I2C / TWI通讯设备。在与R3布局的Arduino板(1引脚),SDA(数据线)和SCL(时钟线)在脚头接近AREF引脚。Arduino由于有两个I2C / TWI接口sda1和SCL1靠近AREF引脚和附加一个在引脚20和21。作为一个参考下表显示在TWI引脚位于不同的Arduino。板I2C /双引脚UNO,以太网(SDA)A4,A5(SCL)mega2560 20(SDA),21(SCL)列奥纳多2(SDA),3(SCL)由于20(SDA),21(SCL),sda1,SCL1为Arduino 1,图书馆从流功能的继承,使其符合其他的读/写图书馆。因此,send()和receive()已与read()和write()取代。关键技术有7 -和8位版本I2C地址。7位识别设备,第八位决定是否写入或读取。该电线库使用7位地址。如果你有一个数据表或示例代码,使用8位地址,你要降低比特(即移值一点权),产生0和127之间的一个地址。然而,地址从0到7是不使用,因为保留所以可以使用的第一个地址是8
- 2022-04-15 01:16:30下载
- 积分:1
-
小游戏五子棋大战
class LNode{
private int row;
private int col;
private Color chessColor;
private LNode next;
public LNode(int row,int col,Color chessColor){
this.row=row;
this.col=col;
this.chessColor=chessColor;
}
public LNode(){
this.next=null;
}
public void setRow(int row){
this.row=row;
}
public int getRow(){
return this.row;
}
public void setCol(int col){
this.col=col;
}
public int getCol(){
return this.col;
}
public void setChessColor(Color chessColor){
this.chessColor=chessColor;
}
public Color getChessColor(){
return this.chessColor;
}
public void setNext(LNode next){
this.next=next;
}
public LNode getNext(){
return this.next;
}
}
class NullAndCount{
private int nullCount=0;
private int chessCount=0;
public void setNullCount(int nullCount){
this.nullCount=nullCount;
}
public int getNullCount(){
return this.nullCount;
}
public void setChessCoun
- 2022-05-08 02:47:07下载
- 积分:1
-
在线考试系统
在线考试系统
- 2022-09-01 02:55:03下载
- 积分:1
-
贝叶斯文本分类
文本特征向量可以描述为文本中的字/词构成的属性。例如给出文本: Good good study,Day day up. 可以获得该文本的特征向量集:{ Good, good, study, Day, day , up.} 朴素贝叶斯模型是文本分类模型中的一种简单但性能优越的的分类模型。为了简化计算过程,假定各待分类文本特征变量是相互独立的,即 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-07-07 10:51:12下载
- 积分:1