android php接口 studio_php – 可以在Android Studio中使用httpClient吗?

我使用httpClient将数据发送到这样的php文件

PHP

echo $_POST['My_Data'];

?>

我添加< uses-permission android:name =“android.permission.INTERNET”/>到AndroidManifest.xml连接互联网.

这是我的主要活动

SendActivity.java

public class SendActivity extends ActionBarActivity {

String myJSON;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_send);

SendData();

}

public void SendData(){

class GetDataJSON extends AsyncTask{

private ProgressDialog pDialog;

private InputStream is = null;

private String url = "http://----/send.php";

private String page_output = "";

@Override

protected String doInBackground(String... args) {

try {

// Building Parameters

List params = new ArrayList();

params.add(new BasicNameValuePair("My_Data", "this is my data"));

// defaultHttpClient

DefaultHttpClient httpClient = new DefaultHttpClient();

HttpPost httpPost = new HttpPost(url);

httpPost.setEntity(new UrlEncodedFormEntity(params));

HttpResponse httpResponse = httpClient.execute(httpPost);

HttpEntity httpEntity = httpResponse.getEntity();

is = httpEntity.getContent();

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

} catch (ClientProtocolException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

try {

BufferedReader reader = new BufferedReader(new InputStreamReader(is, "UTF-8"), 8);

StringBuilder sb = new StringBuilder();

String line = null;

while ((line = reader.readLine()) != null)

{

sb.append(line + "\n");

}

is.close();

page_output = sb.toString();

Log.i("LOG", "page_output --> " + page_output);

} catch (Exception e) {

Log.e("Buffer Error", "Error converting result " + e.toString());

}

return page_output;

}

@Override

protected void onPostExecute(String result){

Log.i("LOG", " onPostExecute -> " + result );

myJSON=result;

Log.i("LOG", "myJSON" + myJSON);

}

}

GetDataJSON g = new GetDataJSON();

Log.i("LOG", " GetDataJSON " );

g.execute();

}

}

我使用Android Studio和许多代码已弃用我的数据不发送到PHP,我无法从PHP获取数据

是httpClient从Android Studio过期还是我错了?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值