代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
通过POST方法发送数据
作者:
德帅
/ 发布于
2014/10/10
/
824
//MainActivity //============= package com.v3; import java.util.ArrayList; import java.util.List; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.message.BasicNameValuePair; import org.apache.http.params.CoreProtocolPNames; import org.json.JSONObject; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends Activity { TextView Tname,TCountry,TDob,TCity; EditText Ename,ECountry,EDob,ECity; Button btnCreate; String page=""; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); btnCreate = (Button) findViewById(R.id.btnGen); Tname = (TextView) findViewById(R.id.txtName); Ename = (EditText) findViewById(R.id.editName); TCity = (TextView) findViewById(R.id.txtCity); ECity = (EditText) findViewById(R.id.editCity); TCountry = (TextView) findViewById(R.id.txtCountry); ECountry = (EditText) findViewById(R.id.editCountry); TDob = (TextView) findViewById(R.id.txtDob); EDob = (EditText) findViewById(R.id.editDob); btnCreate.setOnClickListener(new Button.OnClickListener() { public void onClick(View v) { examineJSONFile(); } }); } void examineJSONFile() { try { JSONObject object=new JSONObject(); object.put("Name", Ename.getText()); object.put("City", ECity.getText()); object.put("Country", ECountry.getText()); object.put("Dob", EDob.getText()); String str=object.toString(); executeHttpPost(str); Log.i("JsonString :", str); Toast.makeText(this, "Json Objects are : " + str,Toast.LENGTH_LONG).show(); } catch (Exception je) { } } public void executeHttpPost(String string) throws Exception { //This method for HttpConnection try { HttpClient client = new DefaultHttpClient(); HttpPost request = new HttpPost("http://192.168.1.118:80/androidjsontest/recieve.php"); List<NameValuePair> value=new ArrayList<NameValuePair>(); value.add(new BasicNameValuePair("Name",string)); UrlEncodedFormEntity entity=new UrlEncodedFormEntity(value); request.setEntity(entity); client.execute(request); System.out.println("after sending :"+request.toString()); } catch(Exception e) {System.out.println("Exp="+e); } } } //main.xml //============== <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TableLayout android:id="@+id/tableLayout1" android:layout_width="match_parent" android:layout_height="wrap_content" android:stretchColumns="1"> <TableRow > <TextView android:text="Name" android:id="@+id/txtName" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <EditText android:text="" android:id="@+id/editName" android:layout_width="fill_parent" android:layout_height="wrap_content"/> </TableRow> <TableRow> <TextView android:text="City" android:id="@+id/txtCity" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <EditText android:text="" android:id="@+id/editCity" android:layout_width="fill_parent" android:layout_height="wrap_content"/> </TableRow> <TableRow > <TextView android:text="Country :" android:id="@+id/txtCountry" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <EditText android:text="" android:id="@+id/editCountry" android:layout_width="fill_parent" android:layout_height="wrap_content"/> </TableRow> <TableRow > <TextView android:text="DOB" android:id="@+id/txtDob" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <EditText android:text="" android:id="@+id/editDob" android:layout_width="fill_parent" android:layout_height="wrap_content"/> </TableRow> <TableRow > <Button android:text="Generate" android:id="@+id/btnGen" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </TableRow> </TableLayout> </LinearLayout> //menifest.xml set the INTERNET ACCESS premission
试试其它关键字
POST
POST方法
发送数据
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
德帅
贡献的其它代码
(
7
)
.
模拟百度URL加密解密算法
.
逐个取一串字符串的字符
.
Java脚本获取EL表达式的值
.
利用cookie记忆当前位置的防刷新导航效果
.
微信公众平台开发C#版
.
让Chrome支持小于12px 的文字
.
通过POST方法发送数据
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3