-
java实现Socket模拟多客户端通信
应用背景项目中用到socket多线程,这是个用java实现的demo,实现了Socket模拟多客户端通信,相信对于一个初学者来说,这个demo还是挺有帮助的关键技术java实现Socket模拟多客户端通信,对于调试的时候去下载个“网络调试助手”来模拟客户端或是服务端来验证代码正确,也可以首先开启服务端再开启客户端,console中观察效果
- 2022-01-25 15:13:05下载
- 积分:1
-
JSON学习例子
Json 使用例子,基于android JAVA 语言编写小程序,帮初学者快速掌握JSON 的使用用法.简单明了
- 2022-04-22 18:17:24下载
- 积分:1
-
极限学习机
南洋理工大学黄广斌教授发明提出的极限学习机的源代码,可以用于机器学习,图像,文本的分类,是一个类似于svm的分类方法。
- 2023-03-17 11:40:04下载
- 积分:1
-
基于android的百度地图的实现
基于android百度地图的开发,实现定位和搜索功能。能够让新手更清楚熟练的了解到android开发以及百度地图的开发过程,以及百度地图KEY的申请过程,了解LBS服务系统。
- 2022-04-08 09:45:11下载
- 积分:1
-
paike.java
用Java开发的排课系统,可以进行教师,教室资源安排,冲突检测等-a course timetable system developed by Java, can be used in teacher and classroom resource arrangement and conflict detecting
- 2022-03-25 17:49:25下载
- 积分: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
-
输出skyline 天际线
改代码内部输入数据均是hotel相关数据,有关高度、左右坐标值,计算skyline的结果是将数据,首先转化为向量的列表,然后将列表中的数据映射的相应的二维或者多维空间中,然后根据相应的skyline算法计算skyline的结果。
- 2022-02-05 11:06:16下载
- 积分:1
-
最新java编程题全集
最新java编程题全集,50个经典程序,java笔试用到了
- 2022-04-10 23:22:36下载
- 积分:1
-
银行使用
大为银行营业系统大为银行营业系统大为银行营业系统大为银行营业系统大为银行营业系统
- 2022-02-14 15:26:01下载
- 积分:1
-
请假系统
本系统主要针对目前高校学生在线请假以及学生上课出勤管理而设计的信息系统。本系统总体上由三大功能模块:请假系统模块、考勤系统模块、后台管理模块组成。系统涉及到高校三大类用户:学生、任课老师、系统管理员。本高校学生考勤管理系统用JSP+SQL Server 2000开发,开发过程中运用了页面模块化、信息发布的动态生成、静态页面显示等技术开发。本论文重点介绍本系统的请假系统、考勤系统两大功能模块设计,完成学生、任课老师、系统管理员三类用户功能的设计与实现。
- 2022-01-31 19:18:33下载
- 积分:1