私はコードを持っていません。JSON 形式でデータベースからデータを取得できる Web サービスを作成する必要があります。このデータは android で消費されます。どこから始めたらいいのかわからない。誰かが助けてくれたら、私に道を教えてくれるとうれしいです。
質問する
193 次
1 に答える
1
.net に習熟していれば、それを行うことは大したことではありません。Android側では、このようにするだけです。
List<NameValuePair> parmeters = new ArrayList<NameValuePair>();
parameters.add(new BasicNameValuePair("username",username));
parameters.add(new BasicNameValuePair("password",password));// These are the namevalue pairs which you may want to send to your php file. Below is the method post used to send these parameters
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url); // You can use get method too here if you use get at the .net side to receive any values.
httpPost.setEntity(new UrlEncodedFormEntity(parameters));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
.net 側では、you extract the data and send back the result by encoding it in json format. While at the android side again, you can get the input stream as shown above. From that input stream, you can get the json data.
詳細については、このスレッドを参照してください。それでもソースが必要な場合は、いくつかのソースで回答を編集することがあります。お役に立てれば。
于 2012-12-21T12:34:38.897 に答える