0

我有安卓应用。我应该将数据从 android 传递到具有数据安全性的 Web 服务器。任何人都可以建议我提供哪些数据安全性。

4

2 回答 2

0

使用 Https ,您应该先为您的服务器购买 SSL ,然后使用 https 发送数据。

于 2012-04-09T07:36:32.857 回答
0

您可以使用 HttpPost 方法发送数据。这是一个简单的例子。

public void postData() {
    // Create a new HttpClient and Post Header
    HttpClient httpclient = new DefaultHttpClient();
    HttpPost httppost = new HttpPost("http://www.yoursite.com/script.php");

    try {
        // Add your data
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
        nameValuePairs.add(new BasicNameValuePair("id", "12345"));
        nameValuePairs.add(new BasicNameValuePair("stringdata", "AndDev is Cool!"));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

        // Execute HTTP Post Request
        HttpResponse response = httpclient.execute(httppost);

    } catch (ClientProtocolException e) {
        // TODO Auto-generated catch block
    } catch (IOException e) {
        // TODO Auto-generated catch block
    }
} 
于 2012-04-09T08:25:14.103 回答