我正在Android應用程序和C#Windows窗體應用程序之間使用藍牙通信。 Android應用程序用作客戶端,C#應用程序用作服務器。我只能處理服務器(筆記本電腦)上的連接,當我斷開連接並嘗試再次連接時,似乎沒有任何事情發生。我認爲客戶端工作正常,因爲我已經用另一個移動設備進行了測試,並且該錯誤在服務器代碼中。Android應用程序和C#窗體應用程序之間的藍牙通信
這是服務器代碼:
public partial class Form1 : Form
{
Thread connectserver;
Stream mstream;
BluetoothClient client;
BluetoothListener bluelisten;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (serverstart)
{
updateui("server already started");
}
connectasserver();
}
private void connectasserver()
{
connectserver=new Thread(new ThreadStart (serverconnectedthread));
connectserver.Start();
}
Guid muuid = new Guid("00001101-0000-1000-8000-00805F9B34FB");
bool serverstart = false;
public void serverconnectedthread()
{
serverstart = true;
updateui("waiting for connections of clients\n");
bluelisten = new BluetoothListener(muuid);
bluelisten.Start();
client = new BluetoothClient();
client = bluelisten.AcceptBluetoothClient();
updateui("client has connected\n");
mstream=client.GetStream();
while(true)
{
try
{
byte[] recieved = new byte[1024];
mstream.Read(recieved, 0, recieved.Length);
updateui("recieved: " + Encoding.ASCII.GetString(recieved));
byte[] sent = Encoding.ASCII.GetBytes(" hello world\n");
mstream.Write(sent, 0, sent.Length);
}
catch(IOException except)
{
updateui("client has been disconnected\n");
connectserver.Abort();
client.Close();
mstream.Flush();
break;
}
}
}
private void updateui(string mess)
{
Func<int> del = delegate()
{
textbox3.AppendText(mess + System.Environment.NewLine);
return 0;
};
Invoke(del);
}
private void label1_Click(object sender, EventArgs e)
{
}
private void textBox3_TextChanged()
{
}
}
你的問題似乎不夠清楚,你的意思是你必須重新啓動c#軟件斷開連接後再次連接? – Ogbe
我想在連接第一臺設備連接的喲服務器後,再次連接到同一設備或其他設備,並且這種情況在此代碼中不會發生。此代碼只能有一個與它連接,並斷開連接後,它不能聽任何其他設備或同一設備的任何其他連接 – nayirmicheal
當你嘗試第二次嘗試連接時會出現哪個錯誤? – Ogbe