サーバーに接続すると、そのアドレスが次のようにJavaコードで表示されます。
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://192.168.1.13/spotnshare/syncAddress.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
しかし、コードにIPアドレスが含まれているのは正しくないので、エイリアスとして構成ファイルに入れる必要があると私に言いました。
誰かがそれについて知っていますか?