string lastindexof() 方法 查詢某個字元或字串
string str = new string("菜鳥教程:www.runoob.com");
查詢字元 o 最後出現的位置
system.out.println(str.lastindexof( 'o' ));
從第14個位置查詢字元 o 最後出現的位置
system.out.println(str.lastindexof( 'o', 14 ));
string substr1 = new string("runoob");
子字串 substr1 最後出現的位置
system.out.println( str.lastindexof( substr1 ));
從第十五個位置開始搜尋子字串 substr1最後出現的位置
system.out.println( str.lastindexof( substr1, 15 ));
string substr2 = new string("com");
子字串 substr2 最後出現的位置 ;
system.out.println(str.lastindexof( substr2 ));
**菜鳥教程 selenium webdriver 常用方法
1 獲得頁面的原始碼 driver.get source code driver.getpagesource 如果想將獲得的網頁原始碼儲存成檔案的話 f open r c html source code.html w f.write source code.encode utf 8 f.close...
ConcurrentHashMap 常用方法
void clear 從該對映中移除所有對映關係 boolean containskey object key 測試指定物件是否為此表中的鍵。boolean containsvalue object value 如果此對映將乙個或多個鍵對映到指定值,則返回 true。enumeration elem...
hibernateTemplate常用方法
一 find string querystring 示例 this.gethibernatetemplate find from bean.user 返回所有user物件 二 find string querystring object value 示例 this.gethibernatetempl...