package opensns.util;
public class EscapeUnescape {

public static String escape(String src) {
   int i;
   char j;
   StringBuffer tmp = new StringBuffer();
   tmp.ensureCapacity(src.length() * 6);
   for (i = 0; i < src.length(); i++) {
    j = src.charAt(i);
    if (Character.isDigit(j) || Character.isLowerCase(j)
      || Character.is

阅读全文
类别:java资料 查看评论
文章来源:http://hi.baidu.com/zdz8207/blog/item/5113d2588d63ce86810a1811.html

相关文章:

  • 2022-12-23
  • 2021-10-18
  • 2021-10-29
  • 2021-12-18
  • 2022-12-23
  • 2022-02-10
  • 2021-11-19
  • 2022-02-02
猜你喜欢
  • 2021-06-06
  • 2021-10-02
  • 2022-12-23
  • 2022-12-23
  • 2021-08-17
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案