public List groupBy(List list,String flag,String... sortName) throws Exception{ Map<String,List<Object>> tMap = new HashMap<String,List<Object>>(); fo ...
                            
                            
                                分类:
其他好文   时间:
2016-12-28 21:09:46   
                                阅读次数:
217
                             
                         
                    
                        
                            
                            
                                一.计划 这个任务需要三天 二.开发 1.需求分析:作为一名观众我希望了解某一场比赛的比分以便了解赛况 2.生成设计文档:拆分用户故事 3.具体设计:合理的布局 4.具体代码编写 namespace app{ public partial class Form2 : Form { public Fo ...
                            
                            
                                分类:
其他好文   时间:
2016-12-25 01:06:22   
                                阅读次数:
198
                             
                         
                    
                        
                            
                            
                                Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space fo ...
                            
                            
                                分类:
其他好文   时间:
2016-12-24 14:17:26   
                                阅读次数:
131
                             
                         
                    
                        
                            
                            
                                    网页中经常需要显示图片给用户看,对网站本身来说有的图片是从本地图片服务器来的,但是一旦数量多了以后,磁盘空间又是一个问题。 所以有时就希望显示其他网站的Image,直接把其他网站的图片显示在我的网站上。但并不是所有的外网Image 都能直接连接过来显示。 很多情况下网站开发人员就会遇到 403 fo ...
                            
                            
                                分类:
其他好文   时间:
2016-12-22 19:35:26   
                                阅读次数:
175
                             
                         
                    
                        
                            
                            
                                    http://www.shouce.ren/post/d/id/108632 XSLT参考手册-新.CHMhttp://www.shouce.ren/post/d/id/108633	XSL-FO参考手册-新.CHMhttp://www.shouce.ren/post/d/id/108634	XQu ...
                            
                            
                                分类:
其他好文   时间:
2016-12-20 15:51:50   
                                阅读次数:
249
                             
                         
                    
                        
                            
                            
                                安装JSTL1.1的说明 JSTL1.1不是JSP2.0规范的一部分,能访问servlet和JSP API并不意味着能访问JSTL。 使用JSTL之前,需要将jstl.jar文件安装到Web应用的WEB-INF/lib目录,即每个Web应用都需要JSTL的一个副本。 不用脚本实现一个循环——c:fo... ...
                            
                            
                                分类:
Web程序   时间:
2016-12-17 19:07:40   
                                阅读次数:
238
                             
                         
                    
                        
                            
                            
                                    Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the fo ...
                            
                            
                                分类:
其他好文   时间:
2016-12-17 13:36:26   
                                阅读次数:
135
                             
                         
                    
                        
                            
                            
                                准备:jquery layer 效果:横排最多三个,竖排最多五个子菜单,达到最多不现实+ 效果图 1 2 3 4 code: <div id="menus_box"> <div class="wx_menus_one"> <ul> <li onclick="showAddForm(this)" fo ...
                            
                            
                                分类:
微信   时间:
2016-12-10 06:48:44   
                                阅读次数:
351
                             
                         
                    
                        
                            
                            
                                /*** 用闭包 实现数组中及数组内部数组 的数据提取出来*/var myarr = [1,2,8,[3],[4,[5,[6],['a','b']],[9]]]; function tqFun(qcArr1){	var tempArr = [];	function bbFun (qcArr){ fo ...
                            
                            
                                分类:
编程语言   时间:
2016-12-10 00:27:39   
                                阅读次数:
164
                             
                         
                    
                        
                            
                            
                                    void insertion(int a[], int sz) { for(int i=1; i < sz; i++) { int j = i; while(j > 0 && (a[j] < a[j-1])) { swap(a[j], a[j-1]); j--; } cout << endl; fo ...
                            
                            
                                分类:
编程语言   时间:
2016-12-03 21:18:36   
                                阅读次数:
185