サーバーからデータを受信するために使用するソケットクライアントを入手しました。エミュレーターではすべて正常に動作しますが、Androidではメッセージが常に1つ遅れているため、GUIが新しいデータで更新されません。
関連するコード(クライアントはAsynctaskで実行されます)
@Override
protected Boolean doInBackground(Void... params) { //This runs on a different thread
try {
Log.i("AsyncTask", "doInBackground: Creating socket");
SocketAddress sockaddr = new InetSocketAddress("192.168.x.xxx", 9090);
nsocket = new Socket();
nsocket.connect(sockaddr, 5000); //10 second connection timeout
if (nsocket.isConnected()) {
in = new BufferedReader(new InputStreamReader(nsocket.getInputStream()));
wr = new BufferedWriter(new OutputStreamWriter(nsocket.getOutputStream()));
Log.i("KMC.AsyncTask", "doInBackground: Socket created, streams assigned");
sockState = true;
String inputLine = "";
while ((inputLine = in.readLine()) != null) {
result = inputLine.replace("\\","");
Log.d("KMC", "Got some data: " + result);
this.publishProgress(1);
}
}
} catch (IOException e) {
e.printStackTrace();
Log.i("KMC.AsyncTask", "doInBackground: IOException");
} catch (Exception e) {
e.printStackTrace();
Log.i("KMC.AsyncTask", "doInBackground: Exception");
} finally {
try {
nis.close();
wr.close();
nsocket.close();
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
Log.i("KMC.AsyncTask", "doInBackground: Finished");
}
return true;
}
protected void onProgressUpdate(Integer... values) {
try {
JSONObject jObject = new JSONObject(result.substring(1, result.length()-1));
if(jObject.getString("type").equals("event")){
EventHandler.newEvent(jObject.getString("name"), jObject.getJSONArray("data"));
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
私はグーグルで解決策を見つけようとしましたが、これについては何も見つかりません。