Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Giúp em sủa lỗi khi sử dụng Socket trong C# với ạ !

20:34 25-04-2017 884 lượt xem 2 bình luận 08:35 26-04-2017

Mọi người giúp em với ! Sao em nhập N vào thì nó không đưa ra TỔNG của n vậy nhỉ ?

SEVER

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;

namespace SeverClient
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                IPAddress myAddress = IPAddress.Parse("127.0.0.1");
                TcpListener myListen = new TcpListener(myAddress, 8888);
                myListen.Start();
                Socket mySocket = myListen.AcceptSocket();
                var myStream = new NetworkStream(mySocket);
                var myRead = new StreamReader(myStream);
                var myWrite = new StreamWriter(myStream);
                myWrite.AutoFlush = true;
                while (true)
                {
                    int n = Convert.ToInt32(myRead.ReadLine());
                    Console.WriteLine("Nhap so N: " + n);
                    int sum = 0;
                    for (int i = 0; i <= n; i++)
                    
                        sum += 2*i+1;   
                    
                    myWrite.Write(sum);

                }
               
                mySocket.Close();
                myListen.Stop();
            }
            catch (Exception ex)
            {
                Console.Write("Loi" + ex);
            }
            Console.ReadLine();
        }
    }
}
//----------------------------------

CLIENT
 

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;

namespace ClientSever
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                TcpClient myClient = new TcpClient();
                myClient.Connect("127.0.0.1", 8888);
                Stream myStream = myClient.GetStream();
                while (true)
                {
                    var myRead = new StreamReader(myStream);
                    var myWrite = new StreamWriter(myStream);
                    myWrite.AutoFlush = true;
                    Console.Write("Nhap N: ");
                    String n = Console.ReadLine();
                    myWrite.WriteLine(n);
                    Console.Write("Tong: " + myRead.ReadLine());
                }
                myStream.Close();
                myClient.Close();
            }
            catch (Exception ex)
            {
                Console.WriteLine("Loi" + ex);
            }
            Console.Read();

        }
    }
}

 

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 21:57 25-04-2017

1. Bạn có thể bỏ code vào khối code cho dễ nhìn hơn nè.

2. Tách khối lệnh client và server ra cho dễ nhìn

3. Cho mình biết rõ cách thông tin sau được k:

- Bạn đã thử debug 2 bên để xem truyền nhận tin ok chưa? Hay chỉ trường hợp này lỗi.

- Bạn đã check kết nối thành công hay k chưa.

- Bạn đã check phía server gửi tin thành công hay k chưa

- Bạn đã check client nhận tin thành công hay chưa.

 

Và cố gắng đừng đưa ra các câu hỏi thiếu thông tin. Cũng như cố gắng test thử trước khi thấy lỗi là quăng cả con lên cho người khác nhai cái đống "shit" của bạn nhé.

DG SuperAdmin, Author, KquizAdmin, KquizAuthor đã bình luận 08:35 26-04-2017

Sau này đặt code vào codeblock cho dễ nhìn nha bạn, mình sửa lại rồi đó.

Câu hỏi mới nhất