客户端向服务器发请求然后信息返回到客户端,在本地显示出来显示在一个ListView里面
1 客户端向服务器发请求 定义一个Activity :WorkApprovalSHowActivity
import java.util.ArrayList;
import com.hwtt.android.mobileoa.R;
import com.hwtt.android.mobileoa.adapter.LeaveInfoAdapter;
import com.hwtt.android.mobileoa.bean.LeaveInfo;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.ListView;
public class WorkApprovalSHowActivity extends Activity {
private ListView lv_leave;
LeaveInfoAdapter lva;
ArrayList<LeaveInfo> list = new ArrayList<LeaveInfo>();
// Context context;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.leave_show);
lv_leave = (ListView) findViewById(R.id.leave_show_list);
try {
list = JSONUtil.postRequest("http://172.16.10.131:8080/workflow/workapprove!phoneFindStatus.action");
lva = new LeaveInfoAdapter(list, this);
lv_leave.setAdapter(lva);
// System.out.println(mainList);
} catch (Exception e) {
System.out.println("网络异常");
e.printStackTrace();
}
}
}
2 客户端向服务器发请求后接收到的数据保存到list里面然后进行解析JsonUtil解析
package com.hwtt.android.mobileoa.ui;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.Iterator;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
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.params.BasicHttpParams;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.util.Log;
import com.hwtt.android.mobileoa.bean.LeaveInfo;
public class JSONUtil {
private static final String TAG = "JSONUtil";
/**
* 获取json内容
*
* @param url
* @return JSONArray
* @throws JSONException
* @throws ConnectionException
*/
public static JSONObject getJSON(String url) throws JSONException,
Exception {
return new JSONObject(getRequest(url));
}
/**
* 向api发送get请求,返回从后台取得的信息。
*
* @param url
* @return String
*/
protected static String getRequest(String url) throws Exception {
return getRequest(url, new DefaultHttpClient(new BasicHttpParams()));
}
protected static ArrayList<LeaveInfo> postRequest(String url)
throws Exception {
return postRequest(url, new DefaultHttpClient());
}
/**
* 向api发送get请求,返回从后台取得的信息。
*
* @param url
* @param client
* @return String
*/
protected static String getRequest(String url, DefaultHttpClient client)
throws Exception {
String result = null;
int statusCode = 0;
HttpGet getMethod = new HttpGet(url);
Log.d(TAG, "do the getRequest,url=" + url + "");
try {
// getMethod.setHeader("User-Agent", USER_AGENT);
HttpResponse httpResponse = client.execute(getMethod);
// statusCode == 200 正常
statusCode = httpResponse.getStatusLine().getStatusCode();
Log.d(TAG, "statuscode = " + statusCode);
// httpResponse.setEntity(new
// UrlEncodedFormEntity(null,HTTP.UTF_8));
// 处理返回的httpResponse信息
// result=EntityUtils.toString(httpResponse.getEntity()).trim();
// System.out.println("aaaaaaa:"+result);
result = retrieveInputStream(httpResponse.getEntity());
// System.out.println("aaaa:"+result);
} catch (Exception e) {
Log.e(TAG, e.getMessage());
throw new Exception(e);
} finally {
getMethod.abort();
}
return result;
}
protected static ArrayList<LeaveInfo> postRequest(String url,
DefaultHttpClient client) throws Exception {
String result = null;
int statusCode = 0;
ArrayList<LeaveInfo> list = new ArrayList<LeaveInfo>();
HttpPost getMethod = new HttpPost(url);
Log.d(TAG, "do the postRequest,url=" + url + "");
try {
// getMethod.setHeader("User-Agent", USER_AGENT);
HttpResponse httpResponse = client.execute(getMethod);
// statusCode == 200 正常
statusCode = httpResponse.getStatusLine().getStatusCode();
Log.d(TAG, "statuscode = " + statusCode);
// 处理返回的httpResponse信息
if (statusCode == 200) {
HttpEntity entity = httpResponse.getEntity();
result = retrieveInputStream(entity);
//实例化JSONObject 将result转换成JSONObject 类型进行获取
JSONObject jsonObj = new JSONObject(result);
String applyname = jsonObj.getString("applyname");
String applytime = jsonObj.getString("applytime");
String reason1=jsonObj.getString("reason");
String status1=jsonObj.getString("status");
LeaveInfo bean = new LeaveInfo();
bean.setApplyname(applyname);
bean.setApplytime(applytime);
bean.setReason(reason1);
bean.setStatus(status1);
list.add(bean);
System.out.println();
}
} catch (Exception e) {
// Log.e(TAG, e.getMessage());
throw new Exception(e);
} finally {
// getMethod.abort();
}
return list;
}
/**
* 处理httpResponse信息,返回String
*
* @param httpEntity
* @return String
*/
protected static String retrieveInputStream(HttpEntity httpEntity) {
int length = (int) httpEntity.getContentLength();
// the number of bytes of the content, or a negative number if unknown.
// If the content length is known but exceeds Long.MAX_VALUE, a negative
// number is returned.
// length==-1,下面这句报错,println needs a message
if (length < 0)
length = 10000;
StringBuffer stringBuffer = new StringBuffer(length);
try {
InputStreamReader inputStreamReader = new InputStreamReader(
httpEntity.getContent(), "gb2312");
char buffer[] = new char[length];
int count;
while ((count = inputStreamReader.read(buffer, 0, length - 1)) > 0) {
stringBuffer.append(buffer, 0, count);
}
} catch (UnsupportedEncodingException e) {
Log.e(TAG, e.getMessage());
} catch (IllegalStateException e) {
Log.e(TAG, e.getMessage());
} catch (IOException e) {
Log.e(TAG, e.getMessage());
}
System.out.println("resulte:" + stringBuffer.toString());
return stringBuffer.toString();
}
}
3 定义填充ListView的Adapter
import java.util.List;
import com.hwtt.android.mobileoa.R;
import com.hwtt.android.mobileoa.bean.LeaveInfo;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
public class LeaveInfoAdapter extends BaseAdapter {
List<LeaveInfo> list;
Context mcontext;
public LeaveInfoAdapter(List<LeaveInfo> list, Context context) {
this. list = list;
this.mcontext = context;
}
public void setResult(List<LeaveInfo> list, Context context) {
this. list = list;
this.mcontext = context;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return list.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return list.get(position);
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
LayoutInflater inflater = LayoutInflater.from(mcontext);
convertView = inflater.inflate(R.layout.leave, null);
}
TextView tv_name = (TextView) convertView.findViewById(R.id.leave_name);
tv_name.setText( "姓名:"+list.get(position).getApplyname());
TextView tv_time = (TextView) convertView.findViewById(R.id.leave_time);
tv_time.setText("请假时间"+ list.get(position).getApplytime());
TextView tv_reason = (TextView) convertView
.findViewById(R.id.leave_reason);
tv_reason.setText( "请假原因"+list.get(position).getReason());
TextView tv_status = (TextView) convertView
.findViewById(R.id.leave_status);
tv_status.setText( "状态:"+list.get(position).getStatus());
return convertView;
}
}
4 定义实体对象LeaveInfo
public class LeaveInfo {
private String applyname ;
private String applytime ;
private String createTime ;
private String creator ;
private int id ;
private String processDefinitionId ;
private String props ;
private String reason ;
private String status ;
public LeaveInfo() {
super();
// TODO Auto-generated constructor stub
}
public LeaveInfo(String applyname, String applytime, String createTime,
String creator, int id, String processDefinitionId, String props,
String reason, String status) {
super();
this.applyname = applyname;
this.applytime = applytime;
this.createTime = createTime;
this.creator = creator;
this.id = id;
this.processDefinitionId = processDefinitionId;
this.props = props;
this.reason = reason;
this.status = status;
}
public String getApplyname() {
return applyname;
}
public void setApplyname(String applyname) {
this.applyname = applyname;
}
public String getApplytime() {
return applytime;
}
public void setApplytime(String applytime) {
this.applytime = applytime;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getCreator() {
return creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getProcessDefinitionId() {
return processDefinitionId;
}
public void setProcessDefinitionId(String processDefinitionId) {
this.processDefinitionId = processDefinitionId;
}
public String getProps() {
return props;
}
public void setProps(String props) {
this.props = props;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}
4 ListView的XML文件 leave_show
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ListView
android:id="@+id/leave_show_list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
></ListView>
</LinearLayout>
5 填充Adapter的XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/leave_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#000000"
android:textSize="12dp" />
<TextView
android:id="@+id/leave_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#000000" />
<TextView
android:id="@+id/leave_reason"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#000000"
android:textSize="12dp" />
<TextView
android:id="@+id/leave_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#000000" />
</LinearLayout>
以上就是在客户端获取服务器的信息
相关推荐
2)客户端往服务器发送输入的需要发送的信息,在服务器的接收显示界面显示; 3)服务器往客户端发送输入的需要发送的信息,在客户端的接收界面显示; 4)断开连接功能,点击断开按钮实现服务器与客户端断开连接,...
3. **数据交换**:服务器端的事件处理器会接收到客户端的请求,并可以读取请求体中的数据。同样,客户端也可以通过`idHttp`组件的响应属性获取服务器返回的数据。 4. **文件传输**:如果要进行文件传输,可以通过`...
首先,客户端是发起请求的一方,通常是一个用户界面,它与用户交互并发送数据到服务器。服务器端则是接收和处理这些请求,然后返回响应的一方。在C#中,我们可以使用System.Net命名空间下的Socket类来创建TCP/IP连接...
- 在一个线程中,客户端可以发送数据到服务器,并通过另一个线程接收服务器的响应,这样可以实现发送和接收的并行操作。 - 完成通信后,客户端关闭连接。 5. **线程同步与通信**: 在多线程环境中,可能会出现...
在本文中,我们将深入探讨如何使用C#的Socket编程来实现一个简单的聊天应用程序,其中包含服务器和客户端的交互。Socket编程是网络通信的基础,它允许应用程序通过网络进行数据传输。在C#中,System.Net命名空间下的...
上述代码中,客户端连接到服务器,发送一条消息,然后接收服务器的回应。这个过程展示了客户端如何主动与服务器通信。请注意,为了使这个示例工作,你需要确保服务器正在运行并监听指定的端口。 总结来说,C#的TCP ...
接着,它发送一条消息,并等待服务器的回应。当接收到服务器的响应后,客户端关闭连接。 总结,Socket编程是实现客户端与服务器通信的基础,通过创建Socket对象、绑定、监听、接受连接、发送和接收数据等一系列操作...
HTTP通信:即使用HTTP协议进行通信,工作原理是客户端向服务器端发送一条HTTP请求,服务器收到之后先解析客户端的请求,之后会返回数据给客户端,然后客户端再对这些数据进行解析和处理。HTTP连接采取的是“请求—...
为了实现广播功能,服务器端在接收到一条新消息后,需要遍历所有连接的客户端,将消息发送出去。Unity的NetworkTransport也提供了向特定连接发送数据的方法。 在实际项目中,还要考虑一些优化和安全措施,例如限制...
Channel代表网络连接,EventLoop负责执行I/O操作和处理事件,Pipeline则是一条处理链,可以自定义处理各种类型的网络事件。 在服务器端,你需要创建一个ServerBootstrap实例,配置所需的参数,如线程池、套接字选项...
Console.WriteLine("从服务器接收到数据: " + receivedData); } client.Close(); } } ``` 这个客户端程序连接到服务端,发送一条消息,然后接收并打印出服务端的响应。 在实际应用中,你可能需要处理多个并发...
- 接收消息:同样,客户端也需要持续监听服务器,使用“读TCP数据”VI接收并显示服务器转发的其他客户端发送的消息。 3. **界面设计**: LabVIEW提供丰富的UI组件,如文本框、按钮和标签,用于构建聊天室的用户...
例如,当用户登录成功时,服务器可以发布一条消息,所有订阅了登录事件的组件或服务都会接收到这个通知,从而更新各自的用户状态。 数据库管理模块是任何系统的核心部分,负责存储和检索用户信息。C#可以使用ADO...
3. **处理客户端通信**: `HandleClientComm`方法接收一个`TcpClient`对象作为参数,并通过`GetStream()`方法获取与其关联的`NetworkStream`。随后进入一个无限循环,在这个循环中,不断读取客户端发送的数据。如果...
客户端连接到服务器,发送一条消息,然后接收服务器的响应并打印出来。这只是一个简单的例子,实际应用中可能需要更复杂的逻辑和协议处理。 总的来说,客户端和服务器端通信是通过Socket编程实现的,涉及到网络协议...
- **服务器**:如果在一分钟内没有从某个连接接收到指令数据,则向客户端发送测试指令;如果3分钟内无法接收到客户端的回应,将主动断开该连接。 #### 三、技术实现方案 ##### 1. 客户端实现 在客户端方面,可以...
7. **消息格式**:为了简化通信,通常会约定一种消息格式,例如,每条消息前加上特定的标识符,以便服务器和客户端能正确解析。 8. **异常处理**:在网络通信中,网络中断、服务器未运行等异常情况很常见,因此需要...
服务器接收到后回应一个SYN+ACK(同步+确认),表明它可以接受连接。然后,客户端再次发送一个ACK,确认服务器的SYN。此时,双方建立了连接,可以开始数据交换。 2. **数据传输**:连接建立后,客户端和服务器就...
描述中提到的“通过json传送一条指令告诉服务器自身的设备运行的平台(windows)”,说明客户端在建立TCP连接后,会向服务器发送JSON格式的数据。JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,...
一旦客户端发起连接,服务端将接收并回应,形成一条TCP连接。 客户端通常负责发起连接并发送数据。在这个实验中,客户端程序将向服务端发送一些文本数据,例如用户输入的信息。这些数据会被封装在TCP报文中,通过...