java模糊查询sql_java中对SQL模糊查询通配符%的处理

在模糊查询的SQL语句中,如果有用户输入查询通配符‘%’,使用 select * from table where code like '%condition%'的SQL,会查出全部记录,这个如何解决叱?

if(!StringUtils.isEmpty(_cname)){

/** 处理模糊通配符%和_ */

sql.append(" and c.FCOURSEWARE_NAME LIKE '%").append(EscapeUtils.escapeStr(_cname)).append("%' escape '\\'");

model.addAttribute("_cname", _cname);

}

EscapeUtils的escapeStr方法:

/**

* Description: 处理转义字符%和_,针对ORACLE数据库

* @param str

* @return

*/

public static String escapeStr(String str){

if(str.startsWith("%") || str.startsWith("_")){

str = "\\" + str;

}

if(str.endsWith("_")){

int index = str.indexOf("_");

str = str.substring(0, index) + "\\" + "_";

}

if(str.endsWith("%")){

int index = str.indexOf("%");

str = str.substring(0, index) + "\\" + "%";

}

return str;

}

其实就是利用oracle的escape函数进行转义,把通配符转义成普通符号使用。

/** 总行数 */

String _sql = "select count(1) from ("+sql.toString()+") ";

long rowCount;

if(!StringUtils.isEmpty(keyWords)){

rowCount = courseInfoService.getCountByJdbc(_sql, map);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值