0
從客戶端發送字符串到服務器的正確方法是什麼?java - 套接字連接,向服務器發送字符串值
try
{
ToServer.writeUTF(_textfield.getText());
//Try to send the strings in textarea (_textarea = new JTextArea(20,80) )
}
catch(IOException e)
{
e.printStackTrace();
}
我使用writeUTF和從的readUTF服務器..
發送字符串從客戶端,但它似乎並沒有工作。