
学习
文章平均质量分 53
wuzhiweiwuzhiwei
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android学习
http://blog.youkuaiyun.com/jianghuiquan/article/details/8348566转载 2014-07-31 16:14:20 · 330 阅读 · 0 评论 -
equals和==的区别
那就从创建对象说: 一个类声明对象,这个对象其实就是一个引用型变量,里面存放的是引用(即地址), 在用new运算符和构造方法创建对象时,这个new运算就会返回一个引用存放在对象中,。 equals(String s)是String类中的方法,作用是比较当前字符串对象的实体是否与参数指定的字符串的实体相同(比较的是引用所指向的实体) ==比较的是对象中存放的引用 举个例子: String转载 2015-05-04 15:10:31 · 399 阅读 · 0 评论 -
mysql in
SELECT * FROM weixino2p.buyer_token as a where a.store_limit<>0 and find_in_set (‘3’,a.store_limit)原创 2015-04-16 11:03:32 · 714 阅读 · 0 评论 -
The JSP specification requires that an attribute name is preceded by whitespace
一个jsp页面在本地运行一点问题没有,发布到服务器就报错了:The JSP specification requires that an attribute name is preceded by whitespace,最后发现竟然是这么一上小问题,在pageEncoding=”GBK”前面少了一个空格转载 2015-04-01 14:49:53 · 492 阅读 · 0 评论 -
java中静态代码块的用法 static用法详解
欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦: Markdown和扩展Markdown简洁的语法 代码块高亮 图片链接和图片上传 LaTex数学公式 UML序列图和流程图 离线写博客 导入导出Markdown文件 丰富的快捷键 快捷键 加粗 Ctrl + B 斜体 Ctrl + I 引用 Ctrl转载 2015-03-31 23:05:08 · 457 阅读 · 0 评论 -
myeclipse导入包快捷键
shift+ctrl+o导入所有没导入的包 shift+ctrl+m导入你鼠标当前所在的地方的未导入的包原创 2015-03-18 11:09:20 · 683 阅读 · 0 评论 -
java----javaWeb-----JavaEE学习网站
http://www.atguigu.com/download.shtml原创 2015-03-27 14:12:17 · 1726 阅读 · 0 评论 -
SpringMVC List 的使用
// List evalList = this.productEvaluateService // .listObjectBySkuIdAndShopId(productSkuIdStr, shopIdStr, // evalLevalStr, auditStatusStr, startPage, end原创 2015-03-16 11:47:58 · 418 阅读 · 0 评论 -
substring 和IndexOf
substring方法 str=str.substring(int beginIndex); 截取掉str从首字母起长度为beginIndex的字符串,将剩余字符串赋值给str; str=str.substring(int beginIndex,intendIndex); 截取str中从beginIndex开始至endIndex结束时的字符串,并将其赋值给str; IndexOf方法转载 2014-11-17 15:14:42 · 752 阅读 · 0 评论 -
The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the assoc
异常信息:The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter. Struts tags are only usable when the request has passed through its servlet filte转载 2016-03-30 15:57:07 · 464 阅读 · 0 评论