本月博客排行
-
第1名
kaizi1992 -
第2名
arpenker -
第3名
wy_19921005 - hanbaohong
- jh108020
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
青否云后端云 - vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- e_e
- kaizi1992
- tanling8334
- arpenker
- sam123456gz
- javashop
- zysnba
- xiangjie88
- lemonhandsome
- wallimn
- ganxueyun
- Xeden
- xyuma
- zhanjia
- wangchen.ily
- jh108020
- johnsmith9th
- zxq_2017
- jbosscn
- forestqqqq
- daizj
- ajinn
- xpenxpen
- 喧嚣求静
- ranbuijj
- kingwell.leng
- silverend
- kristy_yy
- lchb139128
- jveqi
- lich0079
- lzyfn123
- java-007
- sunj
- yeluowuhen
- lerf
- xiaoxinye
- flashsing123
- lxguy
- zhangjijun
- bosschen
- lyndon.lin
- sunnylocus
最新文章列表
通过key获取properties配置文件的value
public class LoadPropertiesByCode {
/**
* 通过key获取properties配置文件的value
* @param code
* @return value
*/
public static String getTextByCode(String code){
ResourceBundle ...
java中map的取值
package com.itcast.map;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
import org.junit.Test;
public class MapTest {
/**
* 取得Map里面的值的两种方式
...
jquery 操作select 取值,设置选中值
比如
<select class="type"></select>
1、设置value为1的项选中
$(".type").val("1");
2、设置text为管理组的项选中
$(".type").find("option[text='管理组']"). ...
java和android 的DateFormat的具体格式介绍
//java DateFormat
String help[] = {
"To use this program, enter a time value",
"in the top text field, and a SimpleDateFormat",
"format specifier in ...
Jquery获取select标签的值、文本方式
首先看html代码:
<select multiple="multiple" id="select1" size=”5” name="dd">
<optgroup label="坑爹组合">
<option value="1" disa ...