現在、3秒間隔でWEB接続をして文字取得をする方法を探しています。
WEB上にはDB連携してあるPHPが配置してあり、カラムの値を監視しています。
カラムの値がそのままの場合何も表示しない、
変わったときに文字が表示されるようになっているのですが、
アンドロイド上からBufferreaderを使って接続する方法がわかりません。
繰り返し処理はしっかりと行われていますが、文字取得が行われていません。
ループのたびに文字取得を行いたいです。
コードに誤りがありますでしょうか?
ご教示いただければ幸いです。
よろしくお願いいたします。
AsyncHttpRequest.Java
1 protected String doInBackground(String... params) { 2 HttpURLConnection connection = null; 3 StringBuilder sb = new StringBuilder(); 4 try { 5 URL url = new URL(params[0]); 6 connection = (HttpURLConnection) url.openConnection(); 7 InputStream is = connection.getInputStream(); 8 BufferedReader reader = new BufferedReader(new InputStreamReader(is, "UTF-8")); 9 String line= ""; 10 while ((line = reader.readLine()) != null) { 11 d = line; 12 } 13 if(d == null){ 14 for(i =1;i<=900;i++) { 15 connection.disconnect(); 16 Thread.sleep(3000); 17 while ((line = reader.readLine()) != null) { 18 d = line; 19 } 20 ((TextView) mActivity.findViewById(R.id.textView4)).setText(String.valueOf(i)); 21 if (d != null) { 22 i= 0; 23 break; 24 } 25 } 26 }else{ 27 } 28 is.close(); 29 connection.disconnect(); 30 } catch (IOException | InterruptedException e) { 31 e.printStackTrace(); 32 } 33 if(d == null){ 34 return null; 35 }else{ 36 37 ((TextView) mActivity.findViewById(R.id.textView2)).setText(d); 38 return (d); 39 } 40 41 } 42 43 public void onPostExecute(String string) { 44 if(string!=null) { 45 ((Button) mActivity.findViewById(R.id.stop_button)).setEnabled(true); 46 47 }else{ 48 49 } 50 }
回答1件
あなたの回答
tips
プレビュー