当前位置: 技术问答>java相关
在JSP里面怎样处理这种类型的字符串!!没分?
来源: 互联网 发布时间:2015-01-10
本文导语: 在JSP里面怎样处理这种类型的字符串!!比如要网数据库里面写入这种字符串 ‘I'm a web programmer', 应该怎样处理这种含有怪字符? 为什么老是出错, | 是单引号的问题。 把单引号变成...
在JSP里面怎样处理这种类型的字符串!!比如要网数据库里面写入这种字符串
‘I'm a web programmer', 应该怎样处理这种含有怪字符? 为什么老是出错,
‘I'm a web programmer', 应该怎样处理这种含有怪字符? 为什么老是出错,
|
是单引号的问题。
把单引号变成两个单引号
synchronized public static String strHtml2DB(String string) throws Exception
//Use this method to validate a String before write it in SQL sentences
{
if (string == null || string.equals(""))
{
return string;
}
String str = string;
int index = 0;
for (index = str.indexOf("'", index); index != -1; index = str.indexOf("'", index +2))
{
str = str.substring(0, index) + "'" + str.substring(index);
}
return str;
}
把单引号变成两个单引号
synchronized public static String strHtml2DB(String string) throws Exception
//Use this method to validate a String before write it in SQL sentences
{
if (string == null || string.equals(""))
{
return string;
}
String str = string;
int index = 0;
for (index = str.indexOf("'", index); index != -1; index = str.indexOf("'", index +2))
{
str = str.substring(0, index) + "'" + str.substring(index);
}
return str;
}