安卓POST请求+异步获取数据+JSON解析+图片解析

1 篇文章 0 订阅
1 篇文章 0 订阅

**请大家关注下我的微信公众号:哦哦猿
QQ群:552123831**
我们今天写了一篇很简单的POST请求,fastjson的解析demo,里面包括了如何显示网络图片的demo。
这样请求的方式很简单,适合新手用,但是它的缺点就是实体类比较多,很麻烦。
这里写图片描述

建一个类:初始化 MyApplication

package com.ysbl.application;

import com.nostra13.universalimageloader.cache.disc.naming.Md5FileNameGenerator;
import com.nostra13.universalimageloader.core.ImageLoader;
import com.nostra13.universalimageloader.core.ImageLoaderConfiguration;
import com.nostra13.universalimageloader.core.assist.QueueProcessingType;
import android.app.Application;
import android.content.Context;

public class MyApplication extends Application {
    public static ImageLoader imageLoader=ImageLoader.getInstance();
    @Override
    public void onCreate() {
        ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(getApplicationContext())
        .threadPriority(Thread.NORM_PRIORITY - 2)
        .denyCacheImageMultipleSizesInMemory()
        .discCacheFileNameGenerator(new Md5FileNameGenerator())
        .tasksProcessingOrder(QueueProcessingType.LIFO)
        .enableLogging() // Not necessary in common
        .build();
       ImageLoader.getInstance().init(config);
        super.onCreate();
    }
//缓存图片
    public static void initImageLoader(Context context) {
        ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(
                context).threadPriority(Thread.NORM_PRIORITY - 2)
                .denyCacheImageMultipleSizesInMemory()
                .discCacheFileNameGenerator(new Md5FileNameGenerator())
                .tasksProcessingOrder(QueueProcessingType.LIFO).enableLogging() 
                .build();
        ImageLoader.getInstance().init(config);
    }
}

建一个类: ScodeRegisdatas (这个类是用来解析的,参数是服务器给你的参数)

package com.ysbl.data.registers;

public class ScodeRegisdatas {

    String sms_code;

    public String getSms_code() {
        return sms_code;
    }

    public void setSms_code(String sms_code) {
        this.sms_code = sms_code;
    }
}

建一个类: Somall_HttpUtils(统一管理你的URL【就是你的接口,方便修改】)

package com.example.http;

public class Somall_HttpUtils {
    public static String  login= "http://rmgr.5ifacai.com/users/create_user";
    //这个是我们公司的接口
}

建一个类: Somall_Httppost (这个是用于POST请求的时候给服务器上传参数)

package com.example.http;

import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;

public class Somall_Httppost {

    // 上传账号密码验证码
    public static InputStream phoneHttpPostDatas(String path, String phone
                ) {
            HttpPost post = new HttpPost(path);
            List<NameValuePair> param = new ArrayList<NameValuePair>();
            param.add(new BasicNameValuePair("phone", phone));
            try {
                post.setEntity(new UrlEncodedFormEntity(param, HTTP.UTF_8));
                HttpResponse response = new DefaultHttpClient().execute(post);
                if (response.getStatusLine().getStatusCode() == 200) {
                    HttpEntity entity = response.getEntity();
                    return entity.getContent();
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
            return null;
        }
        //这个方法不用去管它,它是用来读取返回值的。
    public static String getData(InputStream inputStream) {
        String str = "";
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        int len = 0;

        byte[] data = new byte[1024];
        try {
            while ((len = inputStream.read(data)) != -1) {
                outputStream.write(data, 0, len);
            }
            str = new String(outputStream.toByteArray());
        } catch (Exception e) {
            e.printStackTrace();
        }
        return str;
    }

}

在Mian中:

package com.example.http_post_json;

import java.io.InputStream;
import com.alibaba.fastjson.JSON;
import com.example.http.Somall_HttpUtils;
import com.example.http.Somall_Httppost;
import com.nostra13.universalimageloader.core.DisplayImageOptions;
import com.nostra13.universalimageloader.core.ImageLoader;
import com.ysbl.data.registers.ScodeRegisdatas;
import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {

    ScodeRegisdatas ScodeRegisdata;
    String mobile;
    TextView txt_one;
    ImageView ima_one;
    //这个是你图片解析时候用到的参数
    protected ImageLoader imageLoader = ImageLoader.getInstance();
    protected DisplayImageOptions options; 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        txt_one=(TextView)findViewById(R.id.txt_one);
        ima_one=(ImageView)findViewById(R.id.ima_one);
        new yanzhenmaTask().execute("");
    }
    // 获取验证码
            private class yanzhenmaTask extends AsyncTask<String, String, String> {
                @Override
                protected String doInBackground(String... arg0) {
                    try {
                        mobile="13798426666";
                        InputStream inputStream = Somall_Httppost
                                .phoneHttpPostDatas(Somall_HttpUtils.login, mobile);
                        String result = Somall_Httppost.getData(inputStream);
                        return result;
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                    return "";
                }
                protected void onPostExecute(String result) {
                    super.onPostExecute(result);
                    String  nulls=result;
                    if (nulls!="") {
                    String xinwen = result;
                    Log.e("返回值是:", xinwen);
                    ScodeRegisdata = JSON.parseObject(result, ScodeRegisdatas.class);
                    txt_one.setText("返回值是:"+ScodeRegisdata.getSms_code());
                    //参数一 你地址的URL,参数二你的图片控件名称
                    imageLoader.displayImage("http://img4.imgtn.bdimg.com/it/u=347254090,3099180210&fm=11&gp=0.jpg",ima_one,options, null);
                }
             }
         }
}

记住图片解析要初始化:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.http_post_json"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="21" />
        //添加网络权限
    <uses-permission android:name="android.permission.INTERNET" />
    <application
    //记住这里要初始化 初始化 初始化 
         android:name="com.ysbl.application.MyApplication"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

这里我们要用到两个 jar包。
第一个是json解析包,第二个是图片解析包
这里写图片描述
**请大家关注下我的微信公众号:哦哦猿
QQ群:552123831**

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值