21
03/18
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); } 此时的输出结...