• 大小: 75KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: Java
  • 标签: 你画我猜  jdbc  联网  

资源简介

java新手的课设作业【醒目(代码凌乱处请谅解)】。网络部分的代码是仿照的马士兵坦克大战网络版,有用到数据库和JDBC。游戏先启动drawserver,然后启动drawclient(单机调试时请每次都在最下面的输入框更改端口值)。

资源截图

代码片段和文件信息

import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetSocketAddress;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Random;

import javax.swing.ImageIcon;
/**
 * 这个类的作用是封装聊天的相关信息
 * @author szlm
 *
 */

public class ChatNewMsg implements Msg {
int msgType = Msg.CHAT_NEW_MSG;

DrawClient dc;
String str;
Player thePlayer;
int scores;

public ChatNewMsg(DrawClient dc) {
this.dc = dc;
}

public ChatNewMsg(String str Player thePlayer int scores) {
this.str = str;
this.thePlayer = thePlayer;
this.scores = s

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-04-28 20:30  DrawSomething2.0\
     文件         422  2014-04-21 12:20  DrawSomething2.0\.classpath
     文件         392  2014-04-24 10:39  DrawSomething2.0\.project
     目录           0  2014-04-28 20:30  DrawSomething2.0\.settings\
     文件         598  2014-04-10 10:01  DrawSomething2.0\.settings\org.eclipse.jdt.core.prefs
     目录           0  2014-05-08 21:55  DrawSomething2.0\bin\
     文件        6128  2014-05-08 21:54  DrawSomething2.0\bin\ChatNewMsg.class
     文件        2062  2014-05-08 21:54  DrawSomething2.0\bin\ChatPanel$MyMonitor.class
     文件        1397  2014-05-08 21:54  DrawSomething2.0\bin\ChatPanel.class
     目录           0  2014-05-08 10:55  DrawSomething2.0\bin\Database\
     文件        1423  2014-05-08 10:55  DrawSomething2.0\bin\Database\DBHelper.class
     文件         630  2014-05-08 10:55  DrawSomething2.0\bin\Database\Demo$1.class
     文件        2004  2014-05-08 10:55  DrawSomething2.0\bin\Database\Demo$Monitor.class
     文件        4309  2014-05-08 10:55  DrawSomething2.0\bin\Database\Demo.class
     文件        1297  2014-05-08 21:54  DrawSomething2.0\bin\DrawClient$1.class
     文件        2991  2014-05-08 21:54  DrawSomething2.0\bin\DrawClient$TipDialog$Moni.class
     文件        1889  2014-05-08 21:54  DrawSomething2.0\bin\DrawClient$TipDialog$TimeThread.class
     文件        1424  2014-05-08 21:54  DrawSomething2.0\bin\DrawClient$TipDialog.class
     文件        2280  2014-05-08 21:54  DrawSomething2.0\bin\DrawClient.class
     文件         624  2014-05-08 21:54  DrawSomething2.0\bin\DrawServer$1.class
     文件         527  2014-05-08 21:54  DrawSomething2.0\bin\DrawServer$Client.class
     文件        1943  2014-05-08 21:54  DrawSomething2.0\bin\DrawServer$UDPThread.class
     文件        5595  2014-05-08 21:54  DrawSomething2.0\bin\DrawServer.class
     文件        1276  2014-05-08 21:54  DrawSomething2.0\bin\GamePanel$1.class
     文件        1309  2014-05-08 21:54  DrawSomething2.0\bin\GamePanel$2.class
     文件        1254  2014-05-08 21:54  DrawSomething2.0\bin\GamePanel$3.class
     文件        1190  2014-05-08 21:54  DrawSomething2.0\bin\GamePanel$4.class
     文件        3460  2014-05-08 21:54  DrawSomething2.0\bin\GamePanel.class
     文件        2830  2014-05-08 21:54  DrawSomething2.0\bin\IrregularShape$LineListener.class
     文件        3403  2014-05-08 21:54  DrawSomething2.0\bin\IrregularShape.class
     文件        4141  2014-05-08 21:54  DrawSomething2.0\bin\LoginPanel$MyMonitor.class
............此处省略33个文件信息

评论

共有 条评论