當前位置:首頁 » 編程語言 » javasql模糊查詢

javasql模糊查詢

發布時間: 2024-01-02 15:53:56

java項目/JSP頁面 中 怎樣實現模糊查詢

jsp實現模糊查詢 實際就是在後台使用 like關鍵字和 % 符號做查詢
比如查詢所有姓 王 的人.
jsp文本框輸入王 點擊查詢按鈕 把文本框的值傳入後台 在後台拼接sql語句
select * from user where name like '王%';

'王%' 代表 以'王'字開頭 後面沒有、一個或多個字元
'%王%' 標識 只要字元中 含有 王 字就可以查詢

Ⅱ 如何在JAVA里做 模糊查詢

可以使用正則表達式實現, 可以字元串本身的方法實現,請看示例:

importjava.util.regex.Pattern;

/**
*@authorArvin
*@time2016/11/821:38
*/
publicclassMain{

publicstaticvoidmain(String[]args){
Stringkeyword=".(你好)";
StringcontentOne="hello.(你好)asd";//LIKE匹配
StringcontentTwo="你好";//LIKE不匹配


//方法一:利用正則表達式
//構造正則表達式
Patternregex=Pattern.compile(keyword);

System.out.println(regex.matcher(contentOne).find());//true
System.out.println(regex.matcher(contentTwo).find());//false

//方法二:利用String的contain方法
System.out.println(contentOne.contains(keyword));//true
System.out.println(contentTwo.contains(keyword));//false

//方法三:利用indexOf方法,找得到說明包含
System.out.println(contentOne.indexOf(keyword)>-1);//true
System.out.println(contentTwo.indexOf(keyword)>-1);//false

}
}

Ⅲ 如何用java實現模糊查詢

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class TestDemo {
public static void main(String[] args) {
List<String> aList=new ArrayList<String>();
aList.add("abc12de34");
aList.add("abc02de02");
String regex="^[a-zA-Z]{3}02[a-zA-Z]{2}02$";
Iterator<String> it =aList.iterator();
while(it.hasNext()){
String str=it.next();
System.out.println(str+"==");
if(str.matches(regex)){
System.out.println(str);
}
}
}

}

Ⅳ 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注入攻擊變得相當容易

熱點內容
c語言大於小於 發布:2024-11-30 06:54:43 瀏覽:499
如何知道老婆微信和密碼 發布:2024-11-30 06:46:16 瀏覽:848
java計劃 發布:2024-11-30 06:44:04 瀏覽:942
linux查看ftp日誌 發布:2024-11-30 06:33:19 瀏覽:475
設置截屏存儲 發布:2024-11-30 06:29:00 瀏覽:394
jpg演算法 發布:2024-11-30 06:28:55 瀏覽:195
怎麼刪除u盤中的文件夾 發布:2024-11-30 06:28:20 瀏覽:216
iphone文件夾打開 發布:2024-11-30 06:13:43 瀏覽:298
如何配置Javaweb環境 發布:2024-11-30 06:09:24 瀏覽:121
怎麼使用Androidapi 發布:2024-11-30 06:08:43 瀏覽:61