本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- nychen2000
- ajinn
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- mwhgJava
- silverend
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
通过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 ...