0

我正在开发一个 Android 应用程序,其中所有数据都来自 PHP Web 服务。现在我很困惑如何做到这一点。我应该在 PHP 中开发哪个 Web 服务(ksoap、soap、rest 等),以便当我在 Android 中调用该 Web 服务时它是轻量级的?我需要为这种类型的应用程序做些什么?目前我也在本地制作应用程序,所以 PHP 将从 mysql 数据库中获取数据。请建议我应该开发哪个网络服务。如何在 Android 应用程序中调用它?另外我想知道无论如何我可以在 Android 本身中开发 Web 服务,因为我只有静态数据要传递,可能需要输入 2 或 3 个数据。

4

2 回答 2

1

我不建议您使用 SOAP,实施起来不舒服。我花了很多时间来解析这些来自 SOAP 服务的元素,我建议你实现JSONwebservice。

    /*web service parameters*/
    private static final String TAG = RestSearchResultList.class.getSimpleName();
    private static final String SOAP_ACTION = "http://tempuri.org/GetSomething";
    private static final String METHOD_NAME = "GetSomething";
    private static final String NAMESPACE = "http://tempuri.org/";
    private static final String URL = "http://www.yoursite.com /Services/webservice.asmx";

调用服务:

private SoapObject CallWebService() {
    try {
            SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
            request.addProperty("lang", Language);
            request.addProperty("restTitle", mSearchText);          
            request.addProperty("x", mLongitude);
            request.addProperty("y", mLatitude);


            SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
            envelope.implicitTypes = true;
            envelope.dotNet = true;
            envelope.encodingStyle = SoapSerializationEnvelope.XSD;
            envelope.setOutputSoapObject(request);

            MarshalDouble md = new MarshalDouble();
            md.register(envelope);

            HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
            androidHttpTransport.call(SOAP_ACTION, envelope);
            SoapObject result = (SoapObject) envelope.getResponse();

            SearchingMap.getInstance().Clear();
            return result;
        } catch (Exception ex) {
            Log.e(TAG, ex.getMessage());
        }
        return null;
}

这只是调用服务,而不解析它和其他东西。

JSON 示例:

  public class AsyncJsonDataTask extends AsyncTask<String, Integer, JSONArray> {
    private JsonLoader _jsonHelper;
    private IJsonDataListener _dataListener;
    private ProgressDialog _dialog;

    /*Progress bar widget initialize*/
    public AsyncJsonDataTask(IJsonDataListener dataListener, ProgressDialog dialog) {
        _dataListener = dataListener;
        _jsonHelper = new JsonLoader();
        _dialog = dialog;
    }

    @Override
    protected JSONArray doInBackground(String... urls) {
        JSONArray result = _jsonHelper.GetJSONArray(urls[0]);
        return result;
    }

    @Override
    protected void onPostExecute(JSONArray result) {
        if (_dialog != null) {
            if (_dialog.isShowing()) {
                _dialog.dismiss();
            }
        }
        _dataListener.OnJsonDataLoadComplete(result); //gets data oncomplete
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
    }

    @Override
    protected void onPreExecute() {
        if (_dialog != null) {
            _dialog.setMessage("Load Data");
            _dialog.show();
        }
    }
}

public class JsonHelper {
    /* public static Object toJSON(Object object) throws JSONException {
            if (object instanceof Map) {
                JSONObject json = new JSONObject();
                Map map = (Map) object;
                for (Object key : map.keySet()) {
                    json.put(key.toString(), toJSON(map.get(key)));
                }
                return json;
            } else if (object instanceof Iterable) {
                JSONArray json = new JSONArray();
                for (Object value : ((Iterable)object)) {
                    json.put(value);
                }
                return json;
            } else {
                return object;
            }
        }

        public static boolean isEmptyObject(JSONObject object) {
            return object.names() == null;
        }

        public static Map<String, Object> getMap(JSONObject object, String key) throws JSONException {
            return toMap(object.getJSONObject(key));
        }

        public static Map<String, Object> toMap(JSONObject object) throws JSONException {
            Map<String, Object> map = new HashMap();
            Iterator keys = object.keys();
            while (keys.hasNext()) {
                String key = (String) keys.next();
                map.put(key, fromJson(object.get(key)));
            }
            return map;
        }

        public static List toList(JSONArray array) throws JSONException {
            List list = new ArrayList();
            for (int i = 0; i < array.length(); i++) {
                list.add(fromJson(array.get(i)));
            }
            return list;
        }

        private static Object fromJson(Object json) throws JSONException {
            if (json == JSONObject.NULL) {
                return null;
            } else if (json instanceof JSONObject) {
                return toMap((JSONObject) json);
            } else if (json instanceof JSONArray) {
                return toList((JSONArray) json);
            } else {
                return json;
            }
        }*/
}

我在整个项目中写过一次,没有配置和东西,我保存SRP在这里,你可以检查你需要什么并使用它。

于 2012-12-23T07:31:37.960 回答
0

由于您需要小数据并且这也是本地的,因此最好选择 REST,因为它不需要任何额外的东西,例如 KSOAP 或其他任何东西。如果存在分布式环境,那么 SOAP 更好。在您的情况下,我认为 REST 是好的。

是您可以检查的链接。

于 2012-12-23T06:39:33.237 回答