1

私は、Androidアプリ(クライアント)とPC上のJavaサーバーの間でメッセージを送信するための基本的なクライアントサーバーアプリケーションに取り組んでいます。エミュレーターを使用するとメッセージは正常に送受信されますが、モバイルでアプリを使用しようとすると機能しません。connectifyを使用して、ラップトップでホストされているWi-Fiネットワークに電話を接続します。何が私の電話の接続を妨げているのだろうか...ここにコードがあります:

サーバ

public class ServerMain {
public static void main(String argv[]) throws Exception
  {
     String clientSentence;
     String capitalizedSentence;
     int sock = 1234; 
     ServerSocket welcomeSocket = new ServerSocket(sock);

     while(true)
     {
        Socket connectionSocket = welcomeSocket.accept();
        BufferedReader inFromClient =
           new BufferedReader(new            InputStreamReader(connectionSocket.getInputStream()));
        clientSentence = inFromClient.readLine();
        System.out.println("Received: " + clientSentence);
        if(clientSentence.equalsIgnoreCase("QUIT"))
            break;
     }
     welcomeSocket.close();

  }
}

クライアント

public class Message extends Activity {
EditText et;
String msg1 = "";
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    et = (EditText)findViewById(R.id.etTest);
}
            // TODO Auto-generated method stub
class GetMessages extends AsyncTask<Void, Void, Void> {
    protected Void doInBackground(Void... params) {
       final String msg = et.getText().toString();
         try{
            Socket clientSocket = new Socket("*myip*", 1234);
            DataOutputStream outToServer = new DataOutputStream(clientSocket.getOutputStream());
            String sentence = msg;
            outToServer.writeBytes(sentence + '\n');

        } catch (Exception e) {
           e.printStackTrace();
        }
         return null;
    }

}    
  public void readWebpage(View view) { //The button on click calls this function (from xml)
   new GetMessages().execute();
   }
}
4

0 に答える 0