代码搜索:ChatServer
找到约 2,399 项符合「ChatServer」的源代码
代码结果 2,399
www.eeworm.com/read/462865/1542198
plg chatserver.plg
Build Log
--------------------Configuration: ChatServer - Win32 Debug--------------------
Command Lines
Creating command line "rc.exe /l 0x804
www.eeworm.com/read/462865/1542199
h chatserver.h
// ChatServer.h : PROJECT_NAME 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // 主符号
cl
www.eeworm.com/read/462865/1542200
clw chatserver.clw
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CChatServerDlg
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "Cha
www.eeworm.com/read/462865/1542202
rc chatserver.rc
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
www.eeworm.com/read/462865/1542207
cpp chatserver.cpp
// ChatServer.cpp : 定义应用程序的类行为。
//
#include "stdafx.h"
#include "ChatServer.h"
#include "ChatServerDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CChatServerApp
BEGIN_MESSAGE_
www.eeworm.com/read/462865/1542213
dsp chatserver.dsp
# Microsoft Developer Studio Project File - Name="ChatServer" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86
www.eeworm.com/read/461662/1551889
java chatserver.java
package WebChat;
import java.io.*;
import java.net.*;
import java.util.*;
public class ChatServer
{
public static void main(String args[])
{
ServerSocket server=null;
Socket you=n
www.eeworm.com/read/459481/1569473
java chatserver.java
package at.ac.uni_linz.tk.vchat;
import java.awt.*;
import java.net.*;
import java.io.*;
import java.util.*;
import java.text.*;
/**
* Main class for the server side's functionality. Sta
www.eeworm.com/read/458078/1588417
java chatserver.java
import java.net.*;
import java.util.*;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
public class ChatServer extends Frame
{
TextArea ta = new TextArea();
public void launc
www.eeworm.com/read/458078/1588419
java chatserver.java
import java.net.*;
import java.util.*;
import java.io.*;
public class ChatServer
{
ServerSocket server = null;
Collection cClient = new ArrayList();
public ChatServer(int port) throws E