局域网QQ(C#版)

本通讯程序没有服务端和客户端之分,局域网的计算机运行同一程序即可通信。
由于水平有限,目前版本还很菜,只可以实现基本的聊天功能和显示在线用户功能。
准备添加传送文件、聊天日志、可选参数等功能。
  using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;

namespace myQQ
{
 /// <summary>
 /// Form1 的摘要说明。
 /// </summary>
 public class Form1 : System.Windows.Forms.Form
 {
  public bool runing=false; //标志
  public UdpClient listen=new UdpClient(2525);
  public IPEndPoint End;
  public IPAddress groupAddress=IPAddress.Parse("255.255.255.255"); //广播地址
  public int groupPort=2525;  //广播端口
  public string machineName;
  public string machineIP;
  public string romeName;
  public string romeIP;
  public string romeCon;
 
  private System.Windows.Forms.ListBox box;
  private System.Windows.Forms.Label label1;
  private System.Windows.Forms.Label label2;
  private System.Windows.Forms.Button button1;
  private System.Windows.Forms.Button button3;
  private System.Windows.Forms.Label label3;
  private System.Windows.Forms.TextBox t_rec;
  private System.Windows.Forms.TextBox t_send;
  private System.Windows.Forms.Button button2;
  private System.Windows.Forms.Button newmsg;
  /// <summary>
  /// 必需的设计器变量。
  /// </summary>
  private System.ComponentModel.Container components = null;

  public Form1()
  {
   //
   // Windows 窗体设计器支持所必需的
   //
   InitializeComponent();

   //
   // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
   //
  }

  /// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null)
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

  #region Windows 窗体设计器生成的代码
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
   this.box = new System.Windows.Forms.ListBox();
   this.t_rec = new System.Windows.Forms.TextBox();
   this.label1 = new System.Windows.Forms.Label();
   this.label2 = new System.Windows.Forms.Label();
   this.t_send = new System.Windows.Forms.TextBox();
   this.button1 = new System.Windows.Forms.Button();
   this.button3 = new System.Windows.Forms.Button();
   this.label3 = new System.Windows.Forms.Label();
   this.button2 = new System.Windows.Forms.Button();
   this.newmsg = new System.Windows.Forms.Button();
   this.SuspendLayout();
   //
   // box
   //
   this.box.ItemHeight = 12;
   this.box.Location = new System.Drawing.Point(0, 32);
   this.box.Name = "box";
   this.box.Size = new System.Drawing.Size(200, 352);
   this.box.TabIndex = 0;
   //
   // t_rec
   //
   this.t_rec.BackColor = System.Drawing.SystemColors.InactiveBorder;
   this.t_rec.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(64)), ((System.Byte)(0)));
   this.t_rec.Location = new System.Drawing.Point(208, 56);
   this.t_rec.Multiline = true;
   this.t_rec.Name = "t_rec";
   this.t_rec.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
   this.t_rec.Size = new System.Drawing.Size(328, 136);
   this.t_rec.TabIndex = 1;
   this.t_rec.Text = "";
   //
   // label1
   //
   this.label1.Location = new System.Drawing.Point(208, 40);
   this.label1.Name = "label1";
   this.label1.Size = new System.Drawing.Size(120, 16);
   this.label1.TabIndex = 2;
   this.label1.Text = "接收:";
   //
   // label2
   //
   this.label2.Location = new System.Drawing.Point(208, 200);
   this.label2.Name = "label2";
   this.label2.Size = new System.Drawing.Size(120, 16);
   this.label2.TabIndex = 2;
   this.label2.Text = "发送:";
   //
   // t_send
   //
   this.t_send.Location = new System.Drawing.Point(208, 216);
   this.t_send.Multiline = true;
   this.t_send.Name = "t_send";
   this.t_send.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
   this.t_send.Size = new System.Drawing.Size(328, 112);
   this.t_send.TabIndex = 1;
   this.t_send.Text = "";
   //
   // button1
   //
   this.button1.Location = new System.Drawing.Point(440, 344);
   this.button1.Name = "button1";
   this.button1.Size = new System.Drawing.Size(75, 32);
   this.button1.TabIndex = 3;
   this.button1.Text = "发  送";
   this.button1.Click += new System.EventHandler(this.button1_Click);
   //
   // button3
   //
   this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.button3.Location = new System.Drawing.Point(88, 3);
   this.button3.Name = "button3";
   this.button3.Size = new System.Drawing.Size(56, 23);
   this.button3.TabIndex = 4;
   this.button3.Text = "刷 新";
   this.button3.Click += new System.EventHandler(this.button3_Click);
   //
   // label3
   //
   this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
   this.label3.ForeColor = System.Drawing.Color.Blue;
   this.label3.Location = new System.Drawing.Point(8, 8);
   this.label3.Name = "label3";
   this.label3.Size = new System.Drawing.Size(80, 16);
   this.label3.TabIndex = 5;
   this.label3.Text = "在线用户:";
   //
   // button2
   //
   this.button2.Location = new System.Drawing.Point(360, 344);
   this.button2.Name = "button2";
   this.button2.Size = new System.Drawing.Size(75, 32);
   this.button2.TabIndex = 6;
   this.button2.Text = "清  空";
   this.button2.Click += new System.EventHandler(this.button2_Click);
   //
   // newmsg
   //
   this.newmsg.Location = new System.Drawing.Point(208, 56);
   this.newmsg.Name = "newmsg";
   this.newmsg.Size = new System.Drawing.Size(328, 136);
   this.newmsg.TabIndex = 7;
   this.newmsg.Text = "有新消息了!";
   this.newmsg.Click += new System.EventHandler(this.newmsg_Click);
   //
   // Form1
   //
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(544, 389);
   this.Controls.Add(this.button2);
   this.Controls.Add(this.label3);
   this.Controls.Add(this.button3);
   this.Controls.Add(this.button1);
   this.Controls.Add(this.label1);
   this.Controls.Add(this.box);
   this.Controls.Add(this.label2);
   this.Controls.Add(this.t_send);
   this.Controls.Add(this.t_rec);
   this.Controls.Add(this.newmsg);
   this.Name = "Form1";
   this.Text = "小y";
   this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
   this.Load += new System.EventHandler(this.Form1_Load);
   this.ResumeLayout(false);

  }
  #endregion

  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [STAThread]
  static void Main()
  {
   Application.Run(new Form1());
  }

  private void Form1_Load(object sender, System.EventArgs e)
  {
  
  
   End=new IPEndPoint(groupAddress,groupPort);
   //初始化计算机名和端口
   IPHostEntry myentry=Dns.GetHostByName(Dns.GetHostName());
   IPAddress myaddress=new IPAddress(myentry.AddressList[0].Address);
   machineName=Dns.GetHostName();
   machineIP=myaddress.ToString();

   box.Items.Add("IP            主机名");

   //开启监听线程
   runing=true;
   Thread myThread=new Thread(new ThreadStart(this.ListenPort));
   myThread.Start();

   //发送上线信息
   string sends="0&"+machineIP+"&"+machineName+"&"+machineIP;
   SendPack(sends);
  }

  //侦听指定端口的广播地址UDP包
  public void ListenPort()
  {
   IPEndPoint tempEnd=new IPEndPoint(IPAddress.Any,2525);
   while(runing)
   {
    Application.DoEvents();
    try
    {
     byte[] recb=listen.Receive(ref tempEnd);

     // 检查所接收到的信息
     checkMessage(recb);
    }
    catch(Exception e)
    {
     MessageBox.Show(e.Message.ToString());
     break;
    }
   
   }
   listen.Close();
   box.Items.Add("线程已经退出!");
   runing=false;
  }

  //循环接收包
  public void checkMessage(byte[] recbb)
  {
   string recStr=Encoding.Default.GetString(recbb);
   string[] rec=recStr.Split('&');
   switch(rec[0])
   {
    case "0": //刷新
     if(rec[3]==machineIP)
     {
      if(box.FindString(rec[1]+"  "+rec[2])<=0)
           box.Items.Add(rec[1]+"  "+rec[2]);
     }
     else  if(rec[1]==rec[3])
     {
      //从其他机器发送过来的刷新请求
      //返回自己的信息
      string sendstr="0&"+machineIP+"&"+machineName+"&"+rec[3];
      this.SendPack(sendstr);
      //如果不存在则添加该用户
      if(box.FindString(rec[1]+"  "+rec[2])<=0)
       box.Items.Add(rec[1]+"  "+rec[2]);
     }
     break;
    case "1": //发言
     if(rec[3]==machineIP)
     {
      romeName=rec[2];
      romeIP=rec[1];
      romeCon=rec[4];
      showNe();
     }
     break;
    case "2": //传文件
     break;
    case "9": //确认包
     if(rec[3]==machineIP)
      MessageBox.Show("信息来自:rec[2]("+rec[1]+")\r\n"+rec[4],"消息");
     break;
   }
  
  }
      
  //发送数据包到广播地址
  public void SendPack(string sendStr)
  {
  
   byte[] sendb=Encoding.Default.GetBytes(sendStr);
   try
   {
    listen.Send(sendb,sendb.Length,End);
   }
   catch(Exception e)
   {
    MessageBox.Show(e.Message.ToString());
   }
  }

  //刷新
  private void button3_Click(object sender, System.EventArgs e)
  {
   box.Items.Clear();
   box.Items.Add("IP            主机名");
   string temp2="0&"+machineIP+"&"+machineName+"&"+machineIP;
   this.SendPack(temp2);
  }

  //关闭循环
  private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
  {
   runing=false;
   UdpClient mm=new UdpClient();
   IPEndPoint tempIPEnd=new IPEndPoint(IPAddress.Parse("127.0.0.1"),2525);
   string temps="0&0&0&0&0";
   byte[] sendb=Encoding.Default.GetBytes(temps);
   mm.Send(sendb,sendb.Length,tempIPEnd);
  }
  //发送
  private void button1_Click(object sender, System.EventArgs e)
  {
   if(t_send.Text==null)
   {
    MessageBox.Show("不能发送空信息!");
    return;
   }
   if(box.SelectedItem==null||box.SelectedIndex==0)
   {
    MessageBox.Show("请先选择一个用户!");
    return;
   }
   string send="1&"+machineIP+"&"+machineName+"&"+box.SelectedItem.ToString().Split(' ')[0]+"&"+t_send.Text;
   this.SendPack(send);
  }
  //清空
  private void button2_Click(object sender, System.EventArgs e)
  {
   t_send.Text=string.Empty;
   t_rec.Text=string.Empty;
  }
  //单击显示接收的信息并隐藏自身
  private void newmsg_Click(object sender, System.EventArgs e)
  {
   t_rec.Text="消息来自"+romeName+"("+romeIP+")"+DateTime.Now.ToShortDateString();
   t_rec.Text+="\r\n> "+romeCon;
   string back="9&"+machineIP+"&"+machineName+"&"+romeIP+"&信息被打开!";
   this.SendPack(back);
   newmsg.SendToBack();

  }
  //当有信息时显示提示按钮
  public void showNe()
  {
   //窗体显示
   if(this.WindowState!=FormWindowState.Normal)
   {
    this.Visible=true;
    this.WindowState=FormWindowState.Normal;
   }
   newmsg.BringToFront();
  }
 }
}

 

时间: 2024-12-30 17:02:14

局域网QQ(C#版)的相关文章

局域网QQ(C#版) 第三版

局域网QQ,无客户端和服务端之分,局域网的计算机运行本程序就可以互相看见,可以自由聊天和传文件. 本版较之1.0版的改进之处:     使用数据结构类型传送数据:     增加传文件功能(有进度条): 考虑大家重现本程序方便,本程序一直没有用到任何额外的控件和子窗体版本依然是在VS2003下编译,只要贴进编译器中就可以重现.在VS2005下编译只需要在"窗体设计器生成的代码"里面加一句:System.Windows.Forms.Control.CheckForIllegalCrossT

QQ国际版 4.6 for iPhone新特性:增加简体中文

QQ国际版 for iPhone的最新版本(ver. 4.6.10)于今天正式上线喽!新版本适配了iOS 7风格,并支持简体中文,更符合华人用户的习惯.同时,还推出语音通话功能,让您与QQ好友快速发起语音通话,随时和远方的朋友保持沟通.翻译功能也再次优化,翻译更快更准确! 新版特性: 一.新版本UI全新改版,适配iOS 7风格,更加清新简洁   二.在原有七种语言的基础上,新版本又增加了简体中文 你可以依下列步骤切换语言: 依序点击「设置」>「语言选项」 选择您想要设置的语言,例如简体中文 点选

QQ国际版4.6.11 for Android支持大表情和转发说说

QQ国际版 for Android 的最新版本(ver. 4.6.11)已经正式上线了.作为全球最流行的即时通信工具之一,QQ国际版的用户已经覆盖全球180多个国家和地区,你可以通过手机网络发送文字视频,丰富的个性表情--最新的版本还支持和QQ好友语音通话.内置的翻译功能,也能帮你克服语言障碍,结交来自世界各地的朋友.了解异域文化或者和他国的商业伙伴顺畅沟通. QQ国际版Android 4.6.11 版本更新如下: 一.支持设备锁功能,QQ登录更安全 二.支持繁.英.日.韩.法.西.德七种语言,

手机QQ国际版可即时翻译 支持19国语言互译

虽然从目前的情况来看,承载腾讯国际化的是微信而非手机 QQ,不过最近推出的手机QQ国际版,却在功能上向国际化迈出了一大步.新版的"QQ International"内置了 7 种语言,可以将聊天消息实时翻译成外语,支持包括繁体中文.英语.韩语.日语.法语.阿拉伯语在内的 19 种语言. "QQ International"和普通的手机 QQ 差别不大,但在功能上更加简洁.如不支持贴图表情.不支持游戏和阅读,也没有引入服务中心.不过 QQ International

QQ手机版5.0“一键下班”设计小结

  还记得新版QQ那个特别讨人喜欢的小红点吗?一拖一放,水花般散开,未读消息就清除了,这么一个备受强迫症好评的小功能,作者着实花了不少功夫,今天把他执行的过程分享出来,来学习专业设计师如何让创意从点子落地成为现实,作者的思考过程很成熟,值得新手学习呦. 引子 偶米伽:在一次产品和设计师一起参与的很普通的脑暴活动中,产生了一个想法:世界上强迫症患者那么多,而小红点又是让强迫症们最纠结的存在,是不是应该做个可以一键清除小红点的功能? 大家的一致看法:"嗯,对的,要做.快,记录一下."然后顺

登陆QQ手机版,免费拿精品靓号

好久不发文章了,今天就分享一个福利给大家吧~ 登陆QQ手机版,免费拿精品靓号 填写信息后,需要登陆QQ手机版激活. 每天上限人数1000000人,注册后需要验证手机号,并于1周内激活. 试着去注册了一下,大部分号码是9位的,数字的话,需要自己用心筛选下,有些号还是不错的.要耐得住性子,因为毕竟一个手机号码只能注册一个~~ 对自己号码不太满意的可以试试喽. 当然,所谓的靓号也只能说是相对的靓号,特别好的号腾讯还是会留着赚钱的. 博主申请到的不错的QQ就是210087088 补充一下~注册地址:ht

QQ蜂鸟版正式上线 用户可在腾讯官网下载

中介交易 http://www.aliyun.com/zixun/aggregation/6858.html">SEO诊断 淘宝客 云主机 技术大厅 日前,QQ2009版本在历时三年研发后正式揭开神秘面纱,用户可在腾讯官方网站上下载.据悉,与此前腾讯基本保持的每年一次版本更新所不同,QQ2009版本采用了全新的内核设计,甚至前所未有地在腾讯拥有专门的研发代号-"Hummer"(蜂鸟). 蜂鸟是世界上已知最小的鸟类,以灵巧.快速.敏捷著称,它同时也是蝴蝶的天敌之一,而蝴蝶

QQ国际版v5.0更新 支持原生简体中文

[TechWeb报道]7月1日消息:腾讯QQ目前已经正式对外开放QQ国际版5.0体验版,主要面向海外华人.国内外籍人士群体.本次更新有一个重大突破,QQ国际版5.0体验版首次支持简体中文,无需寻求汉化语言包.QQ国际版5.0除了支持简体中文,还新增了我的收藏,可收藏文字图片等信息,云消息服务,可跨终端与版本同步查看消息记录,并完善群教育功能,分享PPT,标记重点让远程课堂更生动,主菜单全新设计,分类更清晰.使用更方便.当然这些大部分都是国内版具备的,之时对于海外朋友来说,这次更新无疑是个福音.

QQ手机版群文件保存路径解析分享

给各位QQ手机版软件的使用者们来详细的解析分享一下群文件的保存路径. 分享一览: 1.打开任意一个文件管理器(本文以MIUI自带文件管理器为例),在根目录下拖到较后的位置找到tencent文件夹.   2.略往下拉,找到QQfile_recv文件夹   3.点击进入后,我们就看到刚才下载的群文件啦   好了,以上的信息就是小编给各位QQ手机版的这一款软件的使用者们带来的详细的群文件的保存路径解析分享的全部内容了,各位看到这里的软件使用者们,小编相信大家现在那是非常的清楚保存路径了吧,希望小编上面

QQ手机版发现"动态"中新增"部落"

近日,编者登录QQ手机版,发现"动态"中新增"部落",好奇使然点击进去,还真是不失所望,在"北京"部落中,有不少"北漂"."xx(某地方)人在北京"的话题,这些都是大部分在北京的居民感兴趣的话题,有些话题短短20分钟,就有1000多条回复,可谓热闹非凡. 不少用户肯定会好奇,在哪可以进入"部落"呢?主要有两种方法:1.可以通过手机QQ的"动态"中点击"部落&