分类

链接

2024 年 11 月
 123
45678910
11121314151617
18192021222324
252627282930  

近期文章

热门标签

新人福利,免费薅羊毛

mysql插入单引号字符串

此时将字符串中的单引号" ' "替换成"  ' '  "两个单引号即可。 此时应该利用java中的“replace”方法进行替换。此处给出java中的替换代码。   public static void main(String[] args) throws Exception{         Server ss=new Server();         String str="I'm a boy";         String temp=str.replaceAll("'", "''");         String sql="insert into test VALUES('"+temp+"');";         ss.operate(sql, 2);         System.out.println(temp);         System.out.println(sql);     } 此时的输出结...

MySQL 暂无评论 阅读(540)