文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

android post请求接口demo

2022-06-06 04:27

关注

本文实例为大家分享了android post请求接口demo测试代码,供大家参考,具体内容如下

MainActivity.java


package com.tsh.test;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
 public Button loginBtn;
 public TextView loginUserName;
 public TextView loginPassword;
 public static String API="http://mail.sina.net/loginxxx";
 public LoginHandler loginHandler;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  //获取View对象
  loginBtn=(Button) findViewById(R.id.loginBtn);
  loginUserName=(TextView) findViewById(R.id.loginUsername);
  loginPassword=(TextView) findViewById(R.id.loginPassword);
  //给View对象设置点击事件
  loginBtn.setOnClickListener(new OnClickListener() {
   @Override
   public void onClick(View arg0) {
    //开启新线程
    Thread loginThread=new Thread(new LoginRunable());
    loginThread.start();
   }
  });
  loginHandler=new LoginHandler();
 }
 //实现Runable接口,开启新线程
 class LoginRunable implements Runnable{
  @Override
  public void run() {
   try {
    URL url=new URL(API);
    HttpURLConnection http=(HttpURLConnection) url.openConnection();
    http.setRequestMethod("POST");
    http.setDoInput(true);
    http.setDoOutput(true);
    OutputStream ops=http.getOutputStream();
    PrintWriter pw=new PrintWriter(ops);
    String username=loginUserName.getText().toString();
    String password=loginPassword.getText().toString();
    pw.write("email="+username+"&psw="+password+"&loginfrom=app&output=json");
    pw.flush();
    InputStream ins=http.getInputStream();
    byte[] buffer = new byte[1024];
    int length=0;
    StringBuilder sb=new StringBuilder();
    while((length=ins.read(buffer))!=-1){
     sb.append(new String(buffer,0,length));
    }
    Message msg=new Message();
    msg.what=1;
    msg.obj=sb.toString();
    loginHandler.sendMessage(msg);
   } catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
  }
 }
 //传递消息的handle
 class LoginHandler extends Handler{
  @Override
  public void handleMessage(Message msg) {
   String loginResponse=(String) msg.obj;
   System.out.println(loginResponse);
   Toast.makeText(MainActivity.this, loginResponse, 10).show();
   Intent intent=new Intent(MainActivity.this, MailIndexActivity.class);
   //startActivity(intent);
  }
 }
}

main_activity.xml


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="${relativePackage}.${activityClass}" >
 <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="用户名" />
 <EditText 
  android:hint="请输入用户名"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:id="@+id/loginUsername"
  android:text="shihan@appdev.sinanet.com"
  />
 <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="密码"/>
 <EditText 
  android:hint="请输入密码"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:id="@+id/loginPassword"
  android:text="xxxxxxx"/>
 <Button 
  android:id="@+id/loginBtn"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="登陆认证"
  />
</LinearLayout>
您可能感兴趣的文章:Android ListView的OnItemClickListener详解Android 中ListView setOnItemClickListener点击无效原因分析Android实现屏蔽微信拉黑和删除联系人功能示例Android中Fab(FloatingActionButton)实现上下滑动的渐变效果超简单实现Android自定义Toast示例(附源码)Android中实现滑动的七种方式总结Android 仿微信聊天时间格式化显示功能Android 处理OnItemClickListener时关于焦点颜色的设置问题


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯