public class JsonActivity extends Activity { /** Called when the activity is first created. */ private TextView tvJson; private Button btn...
分类:
移动开发 时间:
2014-11-07 16:45:37
阅读次数:
166
internal static string HttpPost(string Url, string postDataStr) { string retString = string.Empty; try { ...
分类:
Web程序 时间:
2014-11-06 16:56:20
阅读次数:
227
2中方法:
1.public byte[] downloadResource(Context context, String url)
throws ClientProtocolException, IOException {
isStop = false;
ByteArrayBuffer buffer = null;
HttpGet hp = new HttpGet(url)...
分类:
移动开发 时间:
2014-10-30 19:18:49
阅读次数:
173
============问题描述============ 想用数据库做一个登录验证的功能,服务器端响应正常,json数据包{"ret":1,"num":123}ret是登录正常时的状态值,num是号码:123url是192.168.1.3:8080/web/getActInfoparams:num=...
分类:
Web程序 时间:
2014-10-22 01:05:50
阅读次数:
195
布局很简单,就一个按钮,主要看一下MainActivity吧:
package com.francis.httpget;
import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuIte...
分类:
移动开发 时间:
2014-10-14 23:23:19
阅读次数:
190
第一步:定义Action [HttpGet] //必须get,必须json public ActionResult CheckItemCodeExists(string ItemCode) //注意参数名称与前端的元素ID(属性名同名) { ...
分类:
其他好文 时间:
2014-09-29 20:42:31
阅读次数:
166
HttpClient项目时Apache提供用于访问网络的类,对访问网络的方法进行了封装。在HttpURlConnection类中的输入输出操作,统一封装成HttpGet、HttpPost、HttpResponse一、服务器端前台1、发送GET请求的步骤:(1)创建HttpClient对象:HttpC...
分类:
其他好文 时间:
2014-09-28 19:33:04
阅读次数:
158
在显示数据列表时,会遇到外键的处理情况,比如,显示文章列表时,我们还要显示文章的分类,而文章分类在文章表中是以外键出现的。1.View 编号 标题 内容 分组 浏览量 2.Controller[HttpGet] public string GetArticList(int page, i...
分类:
其他好文 时间:
2014-09-28 13:27:22
阅读次数:
156
1.view 代码: 编号 登录名 姓名 性别 邮箱 电话 地址 读取数据:GetList 的action2.Control 代码: [HttpGet] public string GetList(int page,int rows, string sort,string order)...
分类:
其他好文 时间:
2014-09-24 19:35:27
阅读次数:
207
1、先在AndroidManifest.xml中注册加入访问因特网服务的权限:(若不加入,则会出现permission denied异常)2. 1 package vip.test.HttpGet; 2 import java.io.BufferedInputStream; 3 import jav...
分类:
移动开发 时间:
2014-09-20 19:11:59
阅读次数:
222