本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
List、Set、数组之间的转换
★ 数组转Collection
使用Apache Jakarta Commons Collections:
import org.apache.commons.collections.CollectionUtils;
String[] strArray = {"aaa", "bbb", "ccc"};
Li ...
Java中的JSON序列化和反序列化
每次写代码遇到问题的时候,google后总是先找javaeye里给出的答案,比较权威,比较专业,而且通常问题可以很快的解决。这两天在写一个.net客户端和java服务器端通过json报文,使用Mina框架通信的项目,为了减少编写代码的重复性,写了几个使用反射来通过函数名称调用该函数,以及Json序列化和反序列化的程序,现在想总结记录一下。1. Java中的JSON序列化和反序列化例子:
...
java Collection 集合类汇总
Java集合类的统一接口是Collection 常用集合类关系图 |-ArrayList |-List -|-LinkedList | |-Vector Collection——| | |-HashSet |-Set-|-Linked ...
展示列表中的下拉框中的默认值
今天遇到了一个问题,分享下,在jsp页面有一个列表显示,在列表里有一项是下拉框,出现是要有默认值,该字段在数据库中是什么值,在list列表里改字段下拉框就要显示什么值,想了好久才想出来,分享下
1.在jsp页面有一个list集合展示,其中一项为下拉列表框,要出现默认值 2.<html:select name="Form" property="spart&qu ...
List 和 Iterator
今天看到这个java.util.RandomAccess接口,看到了这么一句话:
写道
this loop: for (int i=0, n=list.size(); i < n; i++) list.get(i); runs faster than this loop: for (Iterator i=list.iterator(); i.hasNext(); ) i.next();
...
C语言Win32 API目录遍历
#include "stdafx.h"
#include "windows.h"
bool listPath(wchar_t *lpszPath);
int _tmain(int argc, _TCHAR* argv[]) {
listPath(_T("Directory here"));
return 0;
}
...
Set和List如何转换 (转)
★ 数组转Collection
使用Apache Jakarta Commons Collections:
import org.apache.commons.collections.CollectionUtils;
String[] strArray = {"aaa", "bbb", "ccc"};
Lis ...
Java中集合容器类List和Set的用法(转)
Java中集合容器类List和Set的用法
作者:不详 出处:网络转载 2010-11-3 15:09:32 阅读 240 次 <!--<a href="">打印</a> <a href=""&g ...
Freemarker中List的应用
Freemarker中如何遍历List摘要:
在Freemarker应用中经常会遍历List获取需要的数据,并对需要的数据进行排序加工后呈现给用户。那么在Freemarker中如何遍历List,并对List中数据进行适当的排序呢?通过下文的介绍,相信您一定会找到答案。
一、 Freemarker中list指令简单介绍