摘要:
判断是否相等: String a = "令狐冲"; String b = "令狐"; String c = "冲"; String d = new String("令狐冲"); String e = b + c; System.out.println(a == (b + c)); System.ou 阅读全文
摘要:
一、WebService到底是什么? 先来看下标准的定义:Web Service也叫XML Web Service WebService是一种可以接收从Internet或者Intranet上的其它系统中传递过来的请求,轻量级的独立的通讯技术。是:通过SOAP在Web上提供的软件服务,使用WSDL文件 阅读全文