func.jsp

来自「SSH开发的电子政务系统」· JSP 代码 · 共 44 行

JSP
44
字号
<%!
  public static String toHtml(String s) {
      s = Replace(s,"&","&amp;");
      s = Replace(s,"<","&lt;");
      s = Replace(s,">","&gt;");
      s = Replace(s,"\t","    ");
      s = Replace(s,"\r\n","\n");
      s = Replace(s,"\n","<br>");
      s = Replace(s," ","&nbsp;");
      s = Replace(s,"'","&#39;");
      s = Replace(s,"\\","&#92;");
      return s;
    }
    //字符串本身有replace函数。
    public static String Replace(String source,String oldString,String newString) {
      if(source == null) return null;
      StringBuffer output = new StringBuffer();
      int lengOfsource = source.length();
      int lengOfold = oldString.length();
      int posStart = 0;
      int pos;
      while((pos = source.indexOf(oldString,posStart)) >= 0) {
        output.append(source.substring(posStart,pos));
        output.append(newString);
        posStart = pos + lengOfold;
      }
      if(posStart < lengOfsource) {
        output.append(source.substring(posStart));
      }
      return output.toString();
  }
  public static String toEnHtml(String s) {
      s = Replace(s,"&amp;","&");
      s = Replace(s,"&lt;","<");
      s = Replace(s,"&gt;",">");
      s = Replace(s,"    ","\t");
      s = Replace(s,"\n","\r\n");
      s = Replace(s,"<br>","\n");
      s = Replace(s,"&nbsp;"," ");
      s = Replace(s,"&#39;","'");
      s = Replace(s,"&#92;","\\");
      return s;
    }
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?