码迷,mamicode.com
首页 > Web开发 > 详细

调用WebService查看QQ号码状态

时间:2014-11-03 22:40:56      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:webservice

调用WebService查看QQ号码状态

1.1.  webService服务接口

QQ在线状态 WEB 服务

Endpoint:http://webservice.webxml.com.cn/webservices/qqOnlineWebService.asmx

Disco:http://webservice.webxml.com.cn/webservices/qqOnlineWebService.asmx?disco

WSDL:http://webservice.webxml.com.cn/webservices/qqOnlineWebService.asmx?wsdl

通过输入QQ号码(String)检测QQ在线状态。

返回数据(String)Y = 在线;N = 离线;E = QQ号码错误......

1.2.  使用案例

1)        新建一个java web项目,命名为qqws

2)        在cmd命令行切换至一个空的目录,输入如下命令,下载webservice

wsimport–keep http://webservice.webxml.com.cn/webservices/qqOnlineWebService.asmx?wsdl

会发现该目录下多了很多文件,将所有的文件复制到项目中

3)        编写测试类Test.java

package cn.com.webxml;

 

public class Test {

 

         public static void main(String[] args) {

                   QqOnlineWebServiceSoap ws = new QqOnlineWebService()

                                     .getPort(QqOnlineWebServiceSoap.class);

                   String qq = "1508787838";

 

                   String result = ws.qqCheckOnline(qq);

 

                   System.out.println(result);

 

                   // String,Y = 在线;N = 离线;E = QQ号码错误;A = 商业用户验证失败;V = 免费用户超过数量

                   if ("Y".equalsIgnoreCase(result)) {

                            result = "在线";

                   } else if ("N".equalsIgnoreCase(result)) {

                            result = "离线";

                   } else if ("E".equalsIgnoreCase(result)) {

                            result = "QQ号码错误";

                   } else if ("A".equalsIgnoreCase(result)) {

                            result = "商业用户验证失败";

                   } else if ("V".equalsIgnoreCase(result)) {

                            result = "免费用户超过数量";

                   }

 

                   System.out.println(result);

         }

 

}

运行结果如下:

Y

在线

调用WebService查看QQ号码状态

标签:webservice

原文地址:http://blog.csdn.net/u022812849/article/details/40746741

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!