Ⅰ java 用字元串模糊匹配另一個字元串
按LS所說的確可以。要是一定要用String的話可以用
String[] s;
for(String ss:s)
if(ss.contains("貿易"))
System.out.println(ss);
這樣的方法。
Ⅱ java模糊匹配 字元串匹配某個字元串
importjava.util.regex.Matcher;
importjava.util.regex.Pattern;
publicclassTest2{
publicstaticvoidmain(String[]args){
Test2test=newTest2();
Stringtext="測試123abc實名失敗測試123abc";
System.out.println(test.match(text));
}
privatebooleanmatch(Stringtext){
Patternpattern=Pattern.compile("(44|實名失敗|實名不成功|認證失敗|實名認證失敗)");
Matchermatcher=pattern.matcher(text);
if(matcher.find()){
System.out.println("匹配到了:"+matcher.group(1));
returntrue;
}
System.out.println("沒有匹配到");
returnfalse;
}
}
Ⅲ 如何在java List中進行模糊查詢
這樣一個List,裡面存放的是多個Employee對象。然後我想對這個List進行按照Employee對象的名字進行模糊查詢。有什麼好的解決方案么?
比如我輸入的查詢條件為「wang」,那麼應該返回只包含employee1的List列表。
List list = new ArrayList();
Employee employee1 = new Employee();
employee1.setName("wangqiang");
employee1.setAge(30);
list.add(employee1);
Ⅳ JAVA項目/JSP頁面 中 怎樣實現模糊查詢
jsp實現模糊查詢 實際就是在後台使用 like關鍵字和 % 符號做查詢
比如查詢所有姓 王 的人.
jsp文本框輸入王 點擊查詢按鈕 把文本框的值傳入後台 在後台拼接sql語句
select * from user where name like '王%';
'王%' 代表 以'王'字開頭 後面沒有、一個或多個字元
'%王%' 標識 只要字元中 含有 王 字就可以查詢
Ⅳ JAVA方法,SQL語句模糊查詢
這問題很眼熟
也可以這樣:
String sql="select * from ARITCLE where type="+type+" and title like "++" and writer like "+writer+"";
改成
String sql="select * from ARITCLE where type="+type+" and title like '%"++"%' and writer like '%"+writer+"'%";
如果writer 這些參數是用戶輸入而且不經過處理的話
拼接字元串生成查詢語句,會使SQL注入攻擊變得相當容易