Android 使用HttpGet进行登录
发布日期:2021-06-30 22:35:01 浏览次数:2 分类:技术文章

本文共 1262 字,大约阅读时间需要 4 分钟。

public class HttpActivity extends Activity {
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); final EditText editText = new EditText(this); Button button = new Button(this); button.setText("登录"); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { httpGet(editText); } }); } private void httpGet(final EditText editText) { try { HttpClient httpClient = new DefaultHttpClient(); String username = "tom"; String password = "123"; String uri = "http://www.baidu.com?username=" + URLEncoder.encode(username,"utf-8") + "&password="+ URLEncoder.encode(password,"utf-8"); HttpGet httpGet = new HttpGet(uri); HttpResponse response = httpClient.execute(httpGet); if (response.getStatusLine().getStatusCode() == 200) { InputStream inputStream = response.getEntity().getContent(); String result = NetUtils.parseStream(inputStream); editText.setText(result); } } catch (Exception e) { e.printStackTrace(); } }}

转载地址:https://lovoo.blog.csdn.net/article/details/51223569 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:Android 使用Handler模仿流行的AsyncHttpClient
下一篇:Android 读取网络数据

发表评论

最新留言

表示我来过!
[***.240.166.169]2024年04月25日 04时06分56秒