willjava

导航

 

2016年5月13日

摘要: 1 public static String sendGet(String url, String param) { 2 StringBuilder result = new StringBuilder(); 3 BufferedReader br = null; 4 5 try { 6 Str... 阅读全文
posted @ 2016-05-13 15:30 威尔爪哇 阅读(200) 评论(0) 推荐(0) 编辑
 

2016年4月29日

摘要: package com.datastructure.tree; public class BinarySearchTree> { static class BinaryNode { T data; BinaryNode left; BinaryNode right; public BinaryNode... 阅读全文
posted @ 2016-04-29 14:21 威尔爪哇 阅读(209) 评论(0) 推荐(0) 编辑
 

2016年4月27日

摘要: awk 'BEGIN {FS="[]"} \{if($2=="groupId") {groupId=$3}} \{if($2=="artifactId") {artifactId=$3}} \{if($2=="version") {version=$3}} \{if($2=="type") {type=$3}} \{if($4=="\/type") {system("mvn install:in... 阅读全文
posted @ 2016-04-27 17:24 威尔爪哇 阅读(376) 评论(0) 推荐(0) 编辑
 
摘要: com.test.bbsfe bbsfe-buildaggregate-ide 1.0.0 4.0.0 HHHH_bbs_EAR ${project.version} HHHH_bbs_EAR ear com.test.bbs... 阅读全文
posted @ 2016-04-27 17:16 威尔爪哇 阅读(1063) 评论(0) 推荐(0) 编辑
 

2016年4月20日

摘要: Different types of events provide different properties. For example, the onclick event object contains: event.target - the reference to clicked elemen 阅读全文
posted @ 2016-04-20 15:31 威尔爪哇 阅读(142) 评论(0) 推荐(0) 编辑
 
摘要: It works good in most cases, but the handler will lack this in IE, because attachEvent doesn’t provide this. Fixing this problem may look easy, but it 阅读全文
posted @ 2016-04-20 15:17 威尔爪哇 阅读(130) 评论(0) 推荐(0) 编辑
 

2016年3月31日

摘要: public abstract class AbstractCollection implements Collection { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected Abstract... 阅读全文
posted @ 2016-03-31 21:23 威尔爪哇 阅读(221) 评论(0) 推荐(0) 编辑
 

2016年3月28日

摘要: List<E> extends Collection<E> 1. Query Operation: int size(); boolean isEmpty(); boolean contains(Object o); Iterator<E> iterator(); Object[] toArray( 阅读全文
posted @ 2016-03-28 17:14 威尔爪哇 阅读(181) 评论(0) 推荐(0) 编辑
 
摘要: Collection<E> 继承 Iterable<E>, 其中有方法iterator()1. Query Operations: int size(); boolean isEmpty(); boolean contains(Object o); Iterator<E> iterator(); O 阅读全文
posted @ 2016-03-28 16:48 威尔爪哇 阅读(140) 评论(0) 推荐(0) 编辑
 

2016年3月27日

摘要: 迭代器模式(Iterator), Provide a way to access the elements of an aggregate object sequentially without exposing its underlying representation. (它提供一各方法访问一个 阅读全文
posted @ 2016-03-27 17:21 威尔爪哇 阅读(218) 评论(0) 推荐(0) 编辑