- 浏览: 9070 次
- 性别:
- 来自: 北京
最新评论
文章列表
(1)确认安装完毕以下必备工具MyEclipse8.6.1和Firefox(最好带fireBug),本人C盘空间巨大,故这些每天“吃饭的家伙”一般安装至此,所谓“作为一名刀客,刀不离身~~”
myeclipse-8.6.1-win32.rar
FirefoxChinaEdition-latest.exe
firebug-1.6.0-fx.xpi
(2)进入http://update15.aptana.org/studio/26124/index.html
点击下载http://update15.aptana.org/studio/26124/com.aptana.ide.feat ...
所谓Web Service就是客户端以标准的SOAP消息将服务请求发给服务提供者,不论服务提供者用什么样的技术,Java、EJB、或者.NET执行相应的程序得到结果,然后将结果以SOAP消息返回给服务请求者。以axis为例,创建一个简单的Web Service 首先到http://ws.apache.org/axis/上去下载最新的axis版本。最新版本是axis-src-1_4.zip
NEWS (April 22, 2006): Axis 1.4 Final is now available!
第一步:创建WebService项目,命名为Webservice_Begin
解压ax ...
1. public static boolean isEmpty(String str)
判断某字符串是否为空,为空的标准是str == null 或 str.length() == 0
下面是示例:
StringUtils.isEmpty(null) = true
StringUtils.isEmpty("") = true
StringUtils.isEmpty(" ") = false
StringUtils.isEmpty(" ") = false
StringUti ...
StringUtils.hasLength(null) = false
StringUtils.hasLength("") = false
StringUtils.hasLength(" ") = true
StringUtils.hasLength("Hello") = true
StringUtils.hasText(null) = false
StringUtils.hasText("") = false
StringUtils.hasText(" ") = false ...