Как отключить клиент от сервера, не закрывая при этом приложения - C#

Узнай цену своей работы

Формулировка задачи:

Приветствую. Имеется 2 приложения сервер-клиент. При загрузке форму сервер запускается на прослушку из класса, отправка так-же из класса. Собственно вопросы: 1)Как правильно завершить поток? Как отключить клиент от сервера, не закрывая при этом приложения. 2)Как научить сервер слушать сразу несколько клиентов? Или хотя бы переходить в режим прослушки после отсоединения первого клиента. Класс сервера:
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Net;
  11. using System.Net.Sockets;
  12. using System.Threading;
  13. namespace Server
  14. {
  15. class Class1
  16. {
  17. public static int i;
  18. public static TcpListener server = new TcpListener(IPAddress.Any, 11000);
  19. public static NetworkStream stream;
  20. public static TcpClient client;
  21. public static byte[] datalength = new byte[4];
  22. public static string message;
  23. public static void ServerReceive()
  24. {
  25. stream = client.GetStream();
  26. new Thread(() =>
  27. {
  28. while ((i = stream.Read(datalength, 0, 4)) != 0)
  29. {
  30. byte[] data = new byte[BitConverter.ToInt32(datalength, 0)];
  31. stream.Read(data, 0, data.Length);
  32. message = System.Environment.NewLine + "Client : " + Encoding.Default.GetString(data);
  33. MessageBox.Show(message);
  34. }
  35. }).Start();
  36. }
  37. public static void ServerSend(string msg)
  38. {
  39. stream = client.GetStream();
  40. byte[] data;
  41. data = Encoding.Default.GetBytes(msg);
  42. int length = data.Length;
  43. byte[] datalength = new byte[4];
  44. datalength = BitConverter.GetBytes(length);
  45. stream.Write(datalength, 0, 4);
  46. stream.Write(data, 0, data.Length);
  47. }
  48.  
  49. }
  50. }
Класс клиента:
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Net;
  11. using System.Net.Sockets;
  12. using System.Threading;
  13. namespace Client
  14. {
  15. class Class1
  16. {
  17. public static string userid;
  18. public static string userpass;
  19. public static int i;
  20. public static TcpClient client;
  21. public static NetworkStream stream;
  22. public static byte[] datalength = new byte[4];
  23. public static string message;
  24. public static string messagei;
  25. public static void ClientSend(string msg)
  26. {
  27. stream = client.GetStream();
  28. byte[] data;
  29. data = Encoding.Default.GetBytes(msg);
  30. int length = data.Length;
  31. byte[] datalength = new byte[4];
  32. datalength = BitConverter.GetBytes(length);
  33. stream.Write(datalength, 0, 4);
  34. stream.Write(data, 0, data.Length);
  35. }
  36. public static void ClientReceive()
  37. {
  38. stream = client.GetStream();
  39. new Thread(() =>
  40. {
  41. while (((i = stream.Read(datalength, 0, 4)) != 0))
  42. {
  43. byte[] data = new byte[BitConverter.ToInt32(datalength, 0)];
  44. stream.Read(data, 0, data.Length);
  45. {
  46. message= System.Environment.NewLine + "Server : " + Encoding.Default.GetString(data); // Encoding.Default.GetString(data); Converts Bytes Received to String
  47. MessageBox.Show(message);
  48. };
  49. }
  50. }).Start();
  51. }
  52. }
  53. }

Решение задачи: «Как отключить клиент от сервера, не закрывая при этом приложения»

textual
Листинг программы
  1.  public static void ServerReceive()
  2.         {
  3.             stream = client.GetStream();
  4.             bool stop = false;
  5.             new Thread(() =>
  6.             {
  7.                 while (!stop)
  8.                 {
  9.                     try
  10.                     {
  11.                         if ((i = stream.Read(datalength, 0, 4)) != 0)
  12.                         {
  13.                             byte[] data = new byte[BitConverter.ToInt32(datalength, 0)];
  14.                             stream.Read(data, 0, data.Length);
  15.                             message = System.Environment.NewLine + "Client : " + Encoding.Default.GetString(data);
  16.                             MessageBox.Show(message);
  17.                         }
  18.                     }
  19.                     catch (Exception)
  20.                     {
  21.                         MessageBox.Show("Клиент разорвал соединение");
  22.                         Class1.server.Start();
  23.                         MessageBox.Show("Waiting For Connection");
  24.                         new Thread(() =>
  25.                         {
  26.                             Class1.client = Class1.server.AcceptTcpClient();
  27.                             MessageBox.Show("Connected To Client");
  28.                             if (Class1.client.Connected)
  29.                             {
  30.                                 Class1.ServerReceive();
  31.                             }
  32.                         }).Start();
  33.  
  34.                         stop = true;
  35.                         break;
  36.                     }
  37.                 }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

11   голосов , оценка 3.909 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы