用Java 在 KSOAP中序列化复杂对象数组实体


1:实体类SQueEnt

复制代码

public class SQueEntimplements KvmSerializable {

 

    // 标题,内容,类型数组

    private String lblText;

    private String txtText;

    private String Type;

    public SQueEnt(){}

    public SQueEnt(String lblText, String txtText, String Type) {

       this.lblText = lblText;

       this.txtText = txtText;

       this.Type = Type;

    }

    @Override

    public Object getProperty(int arg0) {

       switch (arg0) {

       case 0:

           return lblText;

       case 1:

           return txtText;

       case 2:

           return Type;

       }

       return null;

    }

    @Override

    public int getPropertyCount() {

       return 3;

    }

    @Override

    public void getPropertyInfo(int arg0, Hashtable arg1, PropertyInfoarg2) {

       // arg2.namespace =WebService.NAMESPACE;

       switch (arg0) {

       case 0:

           arg2.type = PropertyInfo.STRING_CLASS;

           arg2.name = "lblText";

           break;

       case 1:

           arg2.type = PropertyInfo.STRING_CLASS;

           arg2.name = "txtText";

           break;

       case 2:

           arg2.type = PropertyInfo.STRING_CLASS;

           arg2.name = "Type";

           break;

       default:

           break;

       }

    }

    @Override

    public void setProperty(int arg0, Object arg1) {

       switch (arg0) {

       case 0:

           lblText = arg1.toString();

       case 1:

           txtText = arg1.toString();

       case 2:

           Type = arg1.toString();

       }

    }

}

复制代码

2:实体数组ArrayOfSQueEnt

复制代码

public class ArrayOfSQueEnt  extends Vector<SQueEnt> implements KvmSerializable {

    private static final long serialVersionUID = -1166006770093411055L;

    @Override

    public Object getProperty(int arg0) {

            return this.get(arg0);

    }

    @Override

    public int getPropertyCount() {

            return this.size();

    }

    @Override

    public void getPropertyInfo(int arg0, Hashtable arg1, PropertyInfoarg2) {

            arg2.name = "SQueEnt";

            arg2.type = SQueEnt.class;

    }

    @Override

    public void setProperty(int arg0, Object arg1) {

            this.add((SQueEnt)arg1);

    }

}

复制代码

3:webservices上传

复制代码

    public static final String NAMESPACE ="http://tempuri.org/";

    private static final String URLCatalog ="http://192.168.1.123:8002/AssetServer/CatalogService.asmx";

    private static final String URLCount ="http://192.168.1.123:8002/AssetServer/AccountService.asmx";

    private static final String URLFile ="http://192.168.1.123:8002/AssetServer/FileService.asmx";

    private static final String URLQuery ="http://192.168.1.123:8002/AssetServer/QueryService.asmx";

    private static final String URLWork ="http://192.168.1.123:8002//AssetServer/WorkFlowService.asmx";

    SoapSerializationEnvelope envelope =new SoapSerializationEnvelope(

           SoapEnvelope.VER11);


具体的方法如下:

public void fillTable(String id) {

       String method = "fillTableByID";

       SQueEnt sqe = new SQueEnt("磁带编号,并列正题名", "后台测试", "nvarchar(50)");

       ArrayOfSQueEnt sci = new ArrayOfSQueEnt();

       sci.add(sqe);

       sci.add(sqe);

       SoapObject request = new SoapObject(NAMESPACE, method);

       PropertyInfo tabProp1 = new PropertyInfo();

       tabProp1.setName("sqecol");

       tabProp1.setValue(sci);

       tabProp1.setType(ArrayOfSQueEnt.class);

       request.addProperty(tabProp1);

       // String id="179d570d-5da3-40ac-a7ba-e72c02c38b4c";

       // request.addProperty("sqecol",array);

       String type = getFiletype(id);

       request.addProperty("xbType", type);

       request.addProperty("Fileid", id);

       //System.out.println(type +"  :" + id);

       envelope.addMapping(NAMESPACE, "sqecol",

              new ArrayOfSQueEnt().getClass());

       envelope.addMapping(NAMESPACE, "SQueEnt", new SQueEnt().getClass());

       envelope.bodyOut = request;

       envelope.dotNet = true;

       envelope.setOutputSoapObject(request);

       envelope.encodingStyle = "UTF-8";

       HttpTransportSE androidHttpTransport = new HttpTransportSE(URLQuery);

       androidHttpTransport.debug = true;

       try {

           androidHttpTransport.call(NAMESPACE + method, envelope);

           if (envelope.bodyIn != null) {

              Object resultObj = (Object) envelope.bodyIn;

              System.out.println(envelope.bodyIn.toString());

           } else {

              System.out.println("WebServicefillTable()没有获取到数据!");

           }

       } catch (IOException e) {

           System.out.println(e);

           e.printStackTrace();

       } catch (XmlPullParserException e) {

           System.out.println(e);

           e.printStackTrace();

       }

    }

复制代码
参考:

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值