posts - 33,  comments - 17,  trackbacks - 0
 1/**
 2 * 用半角的特殊符号代替全角的特殊符号
 3 * 防止特殊字符在传输参数时出现错误
 4 * 
 5 */

 6
 7public class ReplaceStrE{
 8    public static String rightToError(String ss){
 9        String strs;
10        String strs1;
11        String strs2;
12        String strs3;
13        String strs4;
14        try{
15            strs = ss.replace('','#');
16        }

17        catch(Exception ex){
18            return ss;
19        }

20        
21        try{
22            strs1 = strs.replace('','"');
23        }

24        catch(Exception ex){
25            return strs;
26        }

27        
28        try{
29            strs2 = strs1.replace('  ','&');
30        }

31        catch(Exception ex){
32            return strs1;
33        }

34        
35        try{
36            strs3 = strs2.replace('','+');
37        }

38        catch(Exception ex){
39            return strs2;
40        }

41        
42        try{
43            strs4 = strs3.replace('','\'');
44        }

45        catch(Exception ex){
46            return ss;
47        }

48        return strs4;
49    }

50}
posted on 2008-07-23 17:36 scea2009 阅读(873) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航:
 

<2008年7月>
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789

常用链接

留言簿(1)

随笔分类

随笔档案

PL/SQL存储过程与函数

搜索

  •  

最新评论

阅读排行榜

评论排行榜