我正在使用 PHP 脚本来访问我的数据库中的数据。
但是,如果您的计划不涵盖 3G 访问,数据传输可能会很昂贵。因此,如果周围没有 Wifi,最好知道我的应用程序实际下载/上传/使用了多少。
有没有一种方法可以确定我要上传多少字节(后参数)然后下载(字符串输出/php 脚本的响应)?
使用代码:
//http post
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
httppost.setEntity(new UrlEncodedFormEntity(arguments));
HttpResponse httpresponse = httpclient.execute(httppost);
HttpEntity entity = httpresponse.getEntity();
is = entity.getContent();
Log.e("log_tag", "connection success ");
} catch(Exception e) {
Log.e("log_tag", "Error in http connection "+e.toString());
}