C# webservice返回DataSet类型,android怎么调用解析?
C#webservice[WebMethod]publicDataSetGetDataSet(){DataSetds=newDataSet();.....returnds...
C# webservice
[WebMethod]
public DataSet GetDataSet()
{
DataSet ds = new DataSet();
.....
return ds;
}
android怎么调用解析? 展开
[WebMethod]
public DataSet GetDataSet()
{
DataSet ds = new DataSet();
.....
return ds;
}
android怎么调用解析? 展开
2个回答
展开全部
您好,这样的:
package test.webservice;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import test.webservice.R;
import android.os.Bundle;
import android.os.Handler;
import android.os.StrictMode;
import android.os.AsyncTask;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.ListView;
import android.os.PatternMatcher;
import java.util.Iterator;
import java.util.Set;
import java.util.List;
import android.app.ListActivity;
import android.graphics.Color;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
import android.widget.SimpleAdapter;
import android.widget.AdapterView.OnItemClickListener;
import android.net.NetworkInfo;
import android.os.Build.VERSION;
public class kehu extends Activity{
EditText editText1;
TextView textView1;
Button button1;
ListView lv;
ArrayList<Map<String, Object>> list = new ArrayList<Map<String,Object>>();
public static String flags ="";
private SimpleAdapter listAdapter;
public static String phoneNum ="";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.kehu);
editText1 = (EditText) findViewById(R.id.editText1);
textView1 = (TextView) findViewById(R.id.textView1);
button1 = (Button) findViewById(R.id.button1);
lv=(ListView)findViewById(R.id.ListView_detail);
textView1.setText("请输入客户姓名!");
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
phoneNum = editText1.getText().toString().trim();
getRemoteInfo(phoneNum);
}
public void getRemoteInfo(String phoneSec) {
// 命名空间
String nameSpace = "http://tempuri.org/";
// 调用的方法名称
String methodName = "GetListfhkh";
// EndPoint
String endPoint = "http://10.141.37.197/AndroidServiceS/AndroidService.asmx";
// SOAP Action
String soapAction = "http://tempuri.org/GetListfhkh";
// 指定WebService的命名空间和调用的方法名
SoapObject rpc = new SoapObject(nameSpace, methodName);
// 设置需调用WebService接口需要传入的两个参数mobileCode、userId
rpc.addProperty("khlxr",phoneSec);
// 生成调用WebService方法的SOAP请求信息,并指定SOAP的版本
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.bodyOut = rpc;
// 设置是否调用的是.Net开发的WebService
envelope.dotNet = true;////指定webservice的类型的(java,PHP,dotNet)
// 等价于envelope.bodyOut = rpc;
envelope.setOutputSoapObject(rpc);
HttpTransportSE transport = new HttpTransportSE(endPoint);
try {
// 调用WebService
transport.call(soapAction, envelope);
} catch (Exception e) {
e.printStackTrace();
}
// 获取返回的数据
SoapObject object = (SoapObject) envelope.bodyIn;//在这里出现错误,因为webservice端返回的是一个dataset
// 获取返回的结果,这里添加数据,返回的是整数类型,也能被解析出来,就是dataset不能被正常解析,在删除操作的时候,返回的是布尔类型true,也能正确解析
//http://webservice.webxml.com.cn/webservices/DomesticAirline.asmx?op=getDomesticAirlinesTime,这个就是返回dataset数据,如果能解决这个就能解决上面的问题
// 使用Map来表示列表数据
Map<String, Object> mapOne = new HashMap<String, Object>();
flags= object.getProperty(0).toString();
Pattern pattern=Pattern.compile("ds=anyType\\{[^}]*\\};");
Matcher m = pattern.matcher(flags);//import java.util.regex.Matcher;
while (m.find())
{
String tmp=m.group().replace("ds=anyType{","");
String[] Strlen=tmp.split(";");
if(Strlen.length>1)
{
mapOne = new HashMap<String, Object>(); //只要新建1个new map,就能预防值被覆盖的情况
String khbh=Strlen[0].split("=")[1];
String khqc=Strlen[1].split("=")[1];
mapOne.put("user_name",khbh);
mapOne.put("user_pasword",khqc);//map的键是不允许重复的,否则之前的值会被覆盖掉
list.add(mapOne);
}
}
String title="查询结果如下:";
textView1.setText(title);
listAdapter = new SimpleAdapter(this, list, R.layout.user, new String[] { "user_name", "user_pasword" },new int[] { R.id.user_name, R.id.user_pasword });
// 设置显示ListView
lv.setAdapter(listAdapter);
}
}
以上代码在android真机2.2上测试通过,但是在4.0中无法测试通过(主线程不能访问网络),有没有哪位高手能帮忙修改,使其能在4.0版本以上也能正常访问网络。
package test.webservice;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import test.webservice.R;
import android.os.Bundle;
import android.os.Handler;
import android.os.StrictMode;
import android.os.AsyncTask;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.ListView;
import android.os.PatternMatcher;
import java.util.Iterator;
import java.util.Set;
import java.util.List;
import android.app.ListActivity;
import android.graphics.Color;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
import android.widget.SimpleAdapter;
import android.widget.AdapterView.OnItemClickListener;
import android.net.NetworkInfo;
import android.os.Build.VERSION;
public class kehu extends Activity{
EditText editText1;
TextView textView1;
Button button1;
ListView lv;
ArrayList<Map<String, Object>> list = new ArrayList<Map<String,Object>>();
public static String flags ="";
private SimpleAdapter listAdapter;
public static String phoneNum ="";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.kehu);
editText1 = (EditText) findViewById(R.id.editText1);
textView1 = (TextView) findViewById(R.id.textView1);
button1 = (Button) findViewById(R.id.button1);
lv=(ListView)findViewById(R.id.ListView_detail);
textView1.setText("请输入客户姓名!");
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
phoneNum = editText1.getText().toString().trim();
getRemoteInfo(phoneNum);
}
public void getRemoteInfo(String phoneSec) {
// 命名空间
String nameSpace = "http://tempuri.org/";
// 调用的方法名称
String methodName = "GetListfhkh";
// EndPoint
String endPoint = "http://10.141.37.197/AndroidServiceS/AndroidService.asmx";
// SOAP Action
String soapAction = "http://tempuri.org/GetListfhkh";
// 指定WebService的命名空间和调用的方法名
SoapObject rpc = new SoapObject(nameSpace, methodName);
// 设置需调用WebService接口需要传入的两个参数mobileCode、userId
rpc.addProperty("khlxr",phoneSec);
// 生成调用WebService方法的SOAP请求信息,并指定SOAP的版本
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.bodyOut = rpc;
// 设置是否调用的是.Net开发的WebService
envelope.dotNet = true;////指定webservice的类型的(java,PHP,dotNet)
// 等价于envelope.bodyOut = rpc;
envelope.setOutputSoapObject(rpc);
HttpTransportSE transport = new HttpTransportSE(endPoint);
try {
// 调用WebService
transport.call(soapAction, envelope);
} catch (Exception e) {
e.printStackTrace();
}
// 获取返回的数据
SoapObject object = (SoapObject) envelope.bodyIn;//在这里出现错误,因为webservice端返回的是一个dataset
// 获取返回的结果,这里添加数据,返回的是整数类型,也能被解析出来,就是dataset不能被正常解析,在删除操作的时候,返回的是布尔类型true,也能正确解析
//http://webservice.webxml.com.cn/webservices/DomesticAirline.asmx?op=getDomesticAirlinesTime,这个就是返回dataset数据,如果能解决这个就能解决上面的问题
// 使用Map来表示列表数据
Map<String, Object> mapOne = new HashMap<String, Object>();
flags= object.getProperty(0).toString();
Pattern pattern=Pattern.compile("ds=anyType\\{[^}]*\\};");
Matcher m = pattern.matcher(flags);//import java.util.regex.Matcher;
while (m.find())
{
String tmp=m.group().replace("ds=anyType{","");
String[] Strlen=tmp.split(";");
if(Strlen.length>1)
{
mapOne = new HashMap<String, Object>(); //只要新建1个new map,就能预防值被覆盖的情况
String khbh=Strlen[0].split("=")[1];
String khqc=Strlen[1].split("=")[1];
mapOne.put("user_name",khbh);
mapOne.put("user_pasword",khqc);//map的键是不允许重复的,否则之前的值会被覆盖掉
list.add(mapOne);
}
}
String title="查询结果如下:";
textView1.setText(title);
listAdapter = new SimpleAdapter(this, list, R.layout.user, new String[] { "user_name", "user_pasword" },new int[] { R.id.user_name, R.id.user_pasword });
// 设置显示ListView
lv.setAdapter(listAdapter);
}
}
以上代码在android真机2.2上测试通过,但是在4.0中无法测试通过(主线程不能访问网络),有没有哪位高手能帮忙修改,使其能在4.0版本以上也能正常访问网络。
展开全部
这个不太行吧,建议使用json来传递数据
追问
json就算了吧,搞了一个月都不行,
vs开发环境都弄不好 没人知道
错误 1 未能加载文件或程序集“System.Web.Extensions”或它的某一个依赖项。生成此程序集的运行时比当前加载的运行时新,无法加载此程序集。
追答
额,你的webService 返回 DataSet是C#独有的,android用的java不识别 DataSet,肯定要用通用的数据格式的。
上述错误应该是.net framework版本有关系,开发环境的版本比运行环境的版本高
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询