分类

链接

2018 年 3 月
 1234
567891011
12131415161718
19202122232425
262728293031  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > MySQL > 正文
共享办公室出租
mysql插入单引号字符串
MySQL 暂无评论 阅读(540)

此时将字符串中的单引号' "替换成"  ' '  "两个单引号即可。

此时应该利用java中的“replace”方法进行替换。此处给出java中的替换代码。

 
  1. public static void main(String[] args) throws Exception{
  2.         Server ss=new Server();
  3.         String str="I'm a boy";
  4.         String temp=str.replaceAll("'""''");
  5.         String sql="insert into test VALUES('"+temp+"');";
  6.         ss.operate(sql, 2);
  7.         System.out.println(temp);
  8.         System.out.println(sql);
  9.     }

此时的输出结果:

 
  1. I''m a boy
  2. insert into test VALUES('I''m a boy');

此时可以正确针对数据库进行操作。

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:mysql插入单引号字符串 | Bruce's Blog

发表评论

留言无头像?