ArrayOfString转换为String[]

22 篇文章 0 订阅
15 篇文章 0 订阅

       在使用webservice做客户端时,在客户端返回的数据类型为ArrayOfString。其实看名字也就知道是什么东西。源代码如下:

package cn.com.webxml;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
 * <p>Java class for ArrayOfString complex type.
 * <p>The following schema fragment specifies the expected content contained within this class.
 * <pre>
 * &lt;complexType name="ArrayOfString">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="string" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfString", propOrder = {
    "string"
})
public class ArrayOfString {
    @XmlElement(nillable = true)
    protected List<String> string;
    /**
     * Gets the value of the string property.
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the string property.
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getString().add(newItem);
     * </pre>
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link String }
     */
    public List<String> getString() {
        if (string == null) {
            string = new ArrayList<String>();
        }
        return this.string;
    }
}
由上面的源代码可以看出,ArrayOfString保存的是List <String>类型的数据,但要把它还原为我要的String[]。
String[] 是定长数组,而 List <String> 可以看作是变长数组。
例如一下是做IP地址的查询:
IpAddressSearchWebService service = new IpAddressSearchWebService();

IpAddressSearchWebServiceSoap ipAddressSearchWebServiceSoap = service.getIpAddressSearchWebServiceSoap();

ArrayOfString countryCityByIp = ipAddressSearchWebServiceSoap.getCountryCityByIp("185.34.23.1");


List<String> list = countryCityByIp.getString();

Object[] object = list.toArray();

for(Object o : object){
     System.out.println(o);
}
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值