1

正常に動作する gps アプリケーションを作成しました。今私がしようとしているのは、人々のすべての場所が自動的に更新されるmysqlデータベースを備えたphpサーバーに接続することです..私はこの部分の新しいユーザーです。私はそれのいくつかを試しましたが、私はそれを書くとは思いません..誰かが私を助けて、私がそれをどのようにすべきかについてのプロセスに私を導くことができます..あなたの助けは本当に感謝されます. 以下は、フリーズのヘルプと php スクリプトから書いたコードです。

public class Post extends LocService {{


TelephonyManager telephonyManager = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
String deviceid = telephonyManager.getDeviceId();



    //this is JSON part to put your information inside it
    String postData = "{\"request\":{\"type\":\"locationinfo\"},\"userinfo\":{\"latitude\":\""+latitude+"\",\"longitude\":\""+longitude+"\",\"deviceid\":\""+deviceid+"\"}}";


    HttpClient httpClient = new DefaultHttpClient();

    // Post method to send data to server
    HttpPost post = new HttpPost("http://location.net/storeg.php");


    SQLiteDatabase db = databasehelper.getWritableDatabase();
    Cursor cursor = db.query(TABLE, null, null, null, null);

    cursor.moveToFirst();
    while(cursor.isAfterLast() == false) {

        if(cursor.getString(cursor.getColumnIndex("Sync")).equals("yes") ) {

            String mob = cursor.getString(cursor.getColumnIndex("MobileID"));
            String latitude = cursor.getString(cursor.getColumnIndex("Latitude"));
            String longitude = cursor.getString(cursor.getColumnIndex("Longitude"));
            String service = cursor.getString(cursor.getColumnIndex("Service"));


            JSONObject json = new JSONObject();
            try {
                json.put("MobileID", mob);
                json.put("Latitude", latitude);
                json.put("Longitude", longitude);
                json.put("Service", service);

            } catch (JSONException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            try {
                receive = HttpPostExample.SendJsonUpdate(json, Sync_URL);
            } catch (ClientProtocolException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            Toast.makeText(context,  receive,Toast.LENGTH_SHORT).show();
        }
        cursor.moveToNext();    
    }
    cursor.close();













    try {
        post.setURI(new URI("http://location.net/storeg.php"));
    } catch (URISyntaxException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    // set your post data inside post method    
    try {
        post.setEntity(new StringEntity(postData));
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    // execute post request here 
    try {
        HttpResponse response = httpClient.execute(post);
    } catch (ClientProtocolException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }



}
}

PHP スクリプト

<?php

$con = mysql_connect("localhost","root","");
if (!$con)
 {
  die('Could not connect: ' . mysql_error());
 }

mysql_select_db("mel_db", $con);

$latitude = $_POST['latitude'];
$longitude = $_POST['longitude'];
$service = $_POST['service'];
$devid = $_POST['devid'];



$sql = "INSERT INTO  `mehul_db`.`locations` (
`id` ,
`devid` ,
`latitude` ,
`longitude` ,
`service`
)
VALUES (
NULL ,  '$devid',  '$latitude',  '$longitude',  '$service'
);";
if (!mysql_query($sql,$con))
{
   die('Error: ' . mysql_error());
  }

mysql_close($con);

?>

プロセスを手伝ってください...または、どうすればよいか教えてください..

*編集: *変数を変更した後、このコードを使用して緯度と経度を取得できます..?

String result;
    try{


            JSONArray jArray = new JSONArray(result);


            for(int i=0;i<jArray.length();i++){


                    JSONObject json_data = jArray.getJSONObject(i);


                    Log.i("log_tag","id: "+json_data.getInt("id")+


                            ", name: "+json_data.getString("name")+


                            ", sex: "+json_data.getInt("sex")+


                            ", birthyear: "+json_data.getInt("birthyear")


                   );


            }


   finally }


    }catch(JSONException e){


            Log.e("log_tag", "Error parsing data "+e.toString());


    }


}
4

1 に答える 1

0
     String url="http://location.net/storeg.php";

    DefaultHttpClient httpClient = new DefaultHttpClient();
    HttpPost httpPost = new HttpPost(url);

    List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(4);
    nameValuePairs.add(new BasicNameValuePair("latitude", latitude));
    nameValuePairs.add(new BasicNameValuePair("longitude", longitude));
    nameValuePairs.add(new BasicNameValuePair("service", service));
    nameValuePairs.add(new BasicNameValuePair("devid", devid));

    httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));


    HttpResponse httpResponse = httpClient.execute(httpPost);
    InputStream httpEntity = httpResponse.getEntity().getContent();

このコードを使用して、post を介して php にパラメーターを送信すると、それに応じて入力ストリームを取得できます。

于 2012-04-26T06:35:33.307 に答える