0

10秒ごとにその場所をサーバーに報告するAndroidクライアントを作成しています。サーバーには動的DNSを使用しています。緯度、経度、タイムスタンプを GET パラメータとして送信する必要があります。私は次の作業コードを作成しました: package in.kirancity.trackapp;

import java.io.ByteArrayOutputStream;
import java.io.IOException;

import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.StatusLine;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;

import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity
{

TextView textLat;
TextView textLong;
TextView textRes;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    textLat = (TextView)findViewById(R.id.textLat);
    textLong = (TextView)findViewById(R.id.textLong);
    textRes = (TextView)findViewById(R.id.textRes);

    LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
    LocationListener ll = new myLocationListener();
    lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, 0, ll);
}

    class myLocationListener implements LocationListener{
        @Override
        public void onLocationChanged(Location arg0)
        {
            if(arg0 != null)
            {
                double plong = arg0.getLongitude();
                double plat = arg0.getLatitude();
                String url = "http://vishalhome.myftp.org/insert.php?la="+Double.toString(plat)+"&ln="+Double.toString(plong)+"&d='Arbitrary'";
                textLat.setText(Double.toString(plat));
                textLong.setText(Double.toString(plong));
                new RequestTask().execute(url);
             }
        }

        @Override
        public void onProviderDisabled(String arg0) {
            // TODO Auto-generated method stub

        }

        @Override
        public void onProviderEnabled(String arg0) {
            // TODO Auto-generated method stub

        }

        @Override
        public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
            // TODO Auto-generated method stub

        }
}
class RequestTask extends AsyncTask<String, String, String>
{

        @Override
        protected String doInBackground(String... uri) {
            HttpClient httpclient = new DefaultHttpClient();
            HttpResponse response;
            String responseString = null;
            try {
                response = httpclient.execute(new HttpGet(uri[0]));
                StatusLine statusLine = response.getStatusLine();
                if(statusLine.getStatusCode() == HttpStatus.SC_OK){
                    ByteArrayOutputStream out = new ByteArrayOutputStream();
                    response.getEntity().writeTo(out);
                    out.close();
                    responseString = out.toString();
                } else{
                    //Closes the connection.
                    response.getEntity().getContent().close();
                    throw new IOException(statusLine.getReasonPhrase());
                }
            } catch (ClientProtocolException e) {
                responseString = e.toString();
            } catch (IOException e) {
                responseString = e.toString();
            }
            return responseString;
        }

        @Override
        protected void onPostExecute(String result) {
            TextView tv=(TextView)findViewById(R.id.textRes);
            tv.setText(result);
        }
}

@Override
public boolean onCreateOptionsMenu(Menu menu)
{
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

このコードは私にとってはうまくいきます。しかし、実際のタイムスタンプを送信する代わりに、「任意の」文字列を送信しました。asyncTask を正常に実行した後、値が挿入され、応答は次のとおりです。

しかし、onLocationChangedでこれを試しているとき:

String url = "http://vishalhome.myftp.org/insert.php?la="+Double.toString(plat)+"&ln="+Double.toString(plong)+"&d=\'";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String currentDateandTime = sdf.format(new Date());
url = url + currentDateandTime + "\'";

場所の変更イベントでアプリケーションがクラッシュします。try catch ブロックを配置しようとしましたが、問題の手がかりはありません。new RequestTask(url) が呼び出された後に問題が発生していると思います。手伝ってください !

4

1 に答える 1