现在的位置: 首页 > 综合 > 正文

使用POST提交数据

2018年03月31日 ⁄ 综合 ⁄ 共 3488字 ⁄ 字号 评论关闭

使用get请求会受到地址传输的限制,所以也可以使用post请求提交。

get请求与post请求的最大区别在于一个显示,一个不显示。

我的外网IP     192.168.1.13

 

 

配置tomcat服务器:在我的电脑D盘新建一个虚拟目录liyewenweb,将tomcat中webapps\ROOT下

的WEB-INF目录复制到liyewenweb下,配置tomcat中conf下的server.xml ( 在后面<Host> </Host> 中

增加 <Context path="/liyewen" docBase="d:\liyewenweb"/> ), 配置tomcat中conf下的

web.xml ( 找到listings,并将下面的false改成true )。

 

 

 

 

 

在D盘liyewenweb目录下新建android.jsp,内容如下:

 

<% // 接收发送来的请求

  String id = request.getParameter("id") ;

  String password = request.getParameter("password") ;

%>

<%

  if ("xingming".equals(id) && "mima".equals(password)) {

%>

     true

<%

  } else {

%>

     false

<%

  }

%>

 

 

 

 

 

 

 

 

新建一个Android项目:

 

 

 

在main.xml中:

 

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

  xmlns:android="http://schemas.android.com/apk/res/android"

  android:orientation="vertical"

  android:layout_width="fill_parent"

  android:layout_height="fill_parent"

  android:background="#3399ff">

  <TextView

     android:id="@+id/info"

     android:gravity="center_horizontal"

     android:layout_marginTop="20dp"

     android:layout_width="fill_parent"

     android:layout_height="wrap_content"

     android:textColor="#ffffff"

     android:textSize="20dp"/>

</LinearLayout>

 

 

 

 

 

 

 

在MyWebDemo.java中:

 

package com.e.webproject;

 

import java.util.ArrayList;

import java.util.List;

 

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;

import org.apache.http.util.EntityUtils;

 

import android.app.Activity;

import android.os.Bundle;

import android.widget.TextView;

 

public class MyWebDemo extends Activity {

  private TextView info = null;

  private static final String URL = "http://192.168.1.13/liyewen/android.jsp"; // 请求地址

 

  @Override

  public void onCreate(Bundle savedInstanceState) {

     super.onCreate(savedInstanceState);

     super.setContentView(R.layout.main);

     this.info = (TextView) super.findViewById(R.id.info);

     boolean flag = false; // 成功与否的标记

     try {

       HttpPost request = new HttpPost(URL);

       List<NameValuePair> params = new ArrayList<NameValuePair>();

       params.add(new BasicNameValuePair("id", "xingming"));

       params.add(new BasicNameValuePair("password", "mima"));

       request.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));

       HttpResponse response = new DefaultHttpClient().execute(request);

       if(response.getStatusLine().getStatusCode() != 404) {  // 现在已经发现了数据了

         flag = Boolean.parseBoolean(EntityUtils.toString(

              response.getEntity()).trim());

       }

     } catch (Exception e) {

       info.setText("WEB服务器连接失败!");

     }

     if (flag) {

       info.setText("用户李叶文登录成功!");

     } else {

       info.setText("用户登录失败!");

     }

  }

}

 

 

 

 

 

在AndroidManifest.xml中配置权限:

 

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.e.webproject"

    android:versionCode="1"

    android:versionName="1.0" >

 

    <uses-sdk

        android:minSdkVersion="8"

        android:targetSdkVersion="15" />

  <uses-permission android:name="android.permission.INTERNET" />

    <application

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

        android:theme="@style/AppTheme" >

        <activity

            android:name=".MyWebDemo"

            android:label="@string/title_activity_my_web_demo" >

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />

 

                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>

 

</manifest>

 

抱歉!评论已关闭.