如何获取类中的字符串值 [英] how to get the string value in class

查看:45
本文介绍了如何获取类中的字符串值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的减速部分.

This is my deceleration part in string.

string str=Combobox1.SelectedIndex.ToString();


这是我的班级文件如何在str中获取字符串值?


This is my class file how to get the string value in str?

class FTClientCode
       {

           public static string curMsg = "Idle";
           public static void SendFile(string fileName)
           {
               try
               {


                   IPAddress[] ipAddress = Dns.GetHostAddresses(str);
                   IPEndPoint ipEnd = new IPEndPoint(ipAddress[0], 5656);
                   Socket clientSock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.IP);


                   string filePath = "";

                   fileName = fileName.Replace("\\", "/");
                   while (fileName.IndexOf("/") > -1)
                   {
                       filePath += fileName.Substring(0, fileName.IndexOf("/") + 1);
                       fileName = fileName.Substring(fileName.IndexOf("/") + 1);
                   }


                   byte[] fileNameByte = Encoding.ASCII.GetBytes(fileName);
                   if (fileNameByte.Length > 850 * 1024)
                   {
                       curMsg = "File size is more than 850kb, please try with small file.";
                       return;
                   }

                   curMsg = "Buffering ...";
                   byte[] fileData = File.ReadAllBytes(filePath + fileName);
                   byte[] clientData = new byte[4 + fileNameByte.Length + fileData.Length];
                   byte[] fileNameLen = BitConverter.GetBytes(fileNameByte.Length);

                   fileNameLen.CopyTo(clientData, 0);
                   fileNameByte.CopyTo(clientData, 4);
                   fileData.CopyTo(clientData, 4 + fileNameByte.Length);

                   curMsg = "Connection to server ...";
                   clientSock.Connect(ipEnd);

                   curMsg = "File sending...";
                   clientSock.Send(clientData);

                   curMsg = "Disconnecting...";
                   clientSock.Close();
                   curMsg = "File transferred.";

               }
               catch (Exception ex)
               {
                   if (ex.Message == "No connection could be made because the target machine actively refused it")
                       curMsg = "File Sending fail. Because server not running.";
                   else
                       curMsg = "File Sending fail." + ex.Message;
               }

           }
       }

推荐答案

在Combobox1中将此设置更改为 ^ ].
string str=Combobox1.SelectedIndex.ToString();
Set this in Combobox1 selection changed event[^].
string str=Combobox1.SelectedIndex.ToString();


这篇关于如何获取类中的字符串值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆