资源简介
JAVA联机版飞机大战(毕业设计 黄跃然 应用技术)
可直接运行。做毕业设计、课程设计或者想研究下技术的可以下载学习。需要更多资源的可以关注我。
代码片段和文件信息
package game.hyr.Plane.Clienk;
import java.io.IOException;
import java.net.DatagramSocket;
import java.net.SocketException;
public class AutoFoundPort {
// public static void main(String[] args) throws IOException {
// DatagramSocket socket = getRandomPort();
//// System.out.println(“__________socket.getLocalPort():“ + socket.getLocalPort());
//// int a1 = socket.getLocalPort();
//// System.out.println(a1);
//
//// DatagramSocket socket2 = getRangePort(new int[] { 3843 4584 4843 });
//// System.out.println(“__________socket2.getLocalPort():“ + socket2.getLocalPort());
// }
public static DatagramSocket getRandomPort() throws SocketException {
DatagramSocket s = new DatagramSocket(0);
return s;
}
public static DatagramSocket getRangePort(int[] ports) throws IOException {
for (int port : ports) {
try {
return new DatagramSocket(port);
} catch (IOException ex) {
continue; // try next port
}
}
// if the program gets here no port in the range was found
throw new IOException(“未找到空闲端口“);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-12-30 10:30 飞机大战0.9网络版\
文件 307 2014-09-08 11:14 飞机大战0.9网络版\.classpath
文件 400 2014-09-08 11:14 飞机大战0.9网络版\.project
目录 0 2015-12-30 10:30 飞机大战0.9网络版\.settings\
文件 629 2014-09-08 11:14 飞机大战0.9网络版\.settings\org.eclipse.jdt.core.prefs
目录 0 2014-09-13 22:55 飞机大战0.9网络版\bin\
目录 0 2014-09-13 22:55 飞机大战0.9网络版\bin\game\
目录 0 2014-09-13 22:55 飞机大战0.9网络版\bin\game\hyr\
目录 0 2014-09-13 22:55 飞机大战0.9网络版\bin\game\hyr\Plane\
目录 0 2015-12-30 10:30 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\
文件 936 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\AutoFoundPort.class
文件 3294 2014-09-08 11:46 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\BadPlane.class
文件 510 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\Constant.class
文件 2437 2014-09-08 11:35 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\GameClient$UDPRecvThread.class
文件 3548 2014-09-08 11:35 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\GameClient.class
文件 1012 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\Gamegongju.class
文件 5507 2014-09-08 11:45 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\Plane.class
文件 779 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneGameClienk$1.class
文件 972 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneGameClienk$ConnectDialog$1.class
文件 1697 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneGameClienk$ConnectDialog$2.class
文件 2075 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneGameClienk$ConnectDialog.class
文件 1556 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneGameClienk$KeyControl.class
文件 1010 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneGameClienk$PaintThread.class
文件 5542 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneGameClienk.class
文件 3433 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneMoveMessages.class
文件 3269 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\PlaneNewMessages.class
文件 431 2014-09-08 11:17 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\SendMessages.class
文件 2459 2014-09-08 11:40 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\Zidan.class
文件 2527 2014-09-08 11:49 飞机大战0.9网络版\bin\game\hyr\Plane\Clienk\ZidanNewMessages.class
目录 0 2015-12-30 10:30 飞机大战0.9网络版\bin\game\hyr\Plane\Server\
文件 671 2014-09-08 11:14 飞机大战0.9网络版\bin\game\hyr\Plane\Server\PlaneGameServer$Client.class
............此处省略43个文件信息
相关资源
- 基于SpringMVC的JAVA论坛(J2EE BBS 毕业设
- 公交查询系统源码(JAVA)
- Java程序框架--多线程异步处理多任务
- 购物网 java源码
- 2048java源码
- java实现MODBUS通讯
- java web实验报告
- 一个模拟windows时钟日历的程序纯Jav
- 人工智能 动物产生式系统 java
- TCP实现的文件上传功能java
- spring 定时器完整 demo
- java进程调度算法
- Java人员信息管理系统
- 局域网传送文件java实现Client端
- java通过jacob调用ocx.rar
- JAVAEE课堂笔记
- 磁盘调度算法 操作系统作业 java模拟
- java gps信号接收与解析
- java读取图片文件流
- javadbf.jar修正数据和表头的乱码问题
- Java实现的单态登陆
- java编程实现vox转wav
- java-多线程器支持断点续传、线程加减
- 3D坦克java
- oracle 数据表转成java pojo
- Javaweb学生信息管理系统244326
- 哈工大LTP java动态链接库 64位可用
- Java用jdbc连接数据库源码简单操作,包
- RSA算法的Java实现
- java实现融云web端聊天代码
评论
共有 条评论