WebPrint.java
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:55k
源码类别:

OA系统

开发平台:

Java

  1. /**
  2. 公司:北京方成科技发展有限公司
  3. 作者:梅勇
  4. 日期:2001.08.24
  5. */
  6. import java.net.*;
  7. import java.io.*;
  8. import java.text.*;
  9. import java.util.*;
  10. import javax.servlet.*;
  11. import javax.servlet.http.*;
  12. import java.sql.*;
  13. //import explato.database.*;
  14. import sun.io.ByteToCharConverter; 
  15. import org.xml.sax.* ;
  16. import org.apache.xerces.dom.TextImpl;
  17. import org.w3c.dom.Attr;
  18. import org.w3c.dom.Document;
  19. import org.w3c.dom.NamedNodeMap;
  20. import org.w3c.dom.Node;
  21. import org.w3c.dom.NodeList;
  22. //import dom.DOMParserWrapper;
  23. //import dom.wrappers.DOMParser;
  24. //websphere+db2
  25. //import COM.ibm.db2.jdbc.app.*;
  26. import com.sybase.jdbc2.jdbc.*;
  27. public class WebPrint extends HttpServlet {
  28. private int iPosition=1; //用于fc_select类查询中传位置参数
  29. //数据源名称,用户名,密码.用于报表查询时连接另外的数据源使用,用于fc_select1,fc_select2
  30. private String strDataSource=""; 
  31. private String strUserName="";
  32. private String strPassword="";
  33. private String strXml="";
  34. private ResultSet rs = null;
  35. private ResultSet rs1 = null;
  36. private ResultSet rs2 = null;
  37. private Connection con = null;
  38. //private ConnectionManager cm=null;
  39. private Document document=null;
  40.     public void doPost(HttpServletRequest req,
  41.                       HttpServletResponse res)
  42.         throws IOException, ServletException
  43.     {
  44. //设置演示版,
  45.      /*
  46.      long Time1=1026000000+23328000;
  47.      long curTime=0;
  48.      curTime=System.currentTimeMillis();
  49.      curTime=curTime/1000;
  50.     
  51.      //每天的时间为 86400
  52. if(curTime>Time1){ 
  53.      System.out.println("演示版已到期,系统将不正常!"); 
  54.      return ;
  55. }
  56. //------------------
  57. */
  58.         res.setContentType("text/html;charset=UTF-8");
  59.         PrintWriter out = res.getWriter();
  60. try {
  61. /*  
  62. 采用odbc+jdbc做连接的方法:
  63. String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver"; 
  64. String sConnStr = "jdbc:odbc:ereport"; 
  65. Class.forName(sDBDriver);
  66. con = DriverManager.getConnection(sConnStr,"sa",""); 
  67. 采用tomcat 用自做的连接池建立连接的方法:
  68.        ServletContext application = getServletContext();
  69. cm=(ConnectionManager)application.getAttribute ( "fcConPoolManager" );
  70. //demo是配置文件中逻辑数据库的名字,同时也是连接池的名字
  71. con = cm.getConnection( "demo" );     //或者  con = cm.getConnection( "demo", 30000 );   //30000是不能马上取到连接时的等待时间(以毫秒计)
  72. websphere+db2:
  73. Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
  74. con=DriverManager.getConnection("jdbc:db2:sample","meiyong","");
  75. 从db.properties文件中读出以下信息:
  76. drive="sun.jdbc.odbc.JdbcOdbcDriver" / "COM.ibm.db2.jdbc.app.DB2Driver"
  77. url="jdbc:odbc:webgrid" / "jdbc:db2:sample"
  78. username=
  79. password=
  80. */
  81. String drive="";
  82. String url="";
  83. String username="";
  84. String password="";
  85. ServletContext application = getServletContext();
  86. String sPath=application.getRealPath("fc.properties");
  87. //System.err.println(sPath);
  88.         InputStream is = null;
  89.         try {
  90.             is = new BufferedInputStream(new FileInputStream(sPath));
  91.         } catch(FileNotFoundException e) {
  92.             System.err.println("fc.properties 文件未找到!");
  93.         }
  94.         Properties dbProps = new Properties();
  95.         try {
  96.             dbProps.load(is);
  97.         } catch (Exception e) {
  98.             System.err.println("不能打开fc.properties 文件.");
  99.             return;
  100.         }
  101.      Enumeration propNames = dbProps.propertyNames();
  102.      while (propNames.hasMoreElements()) {
  103.      String name = (String) propNames.nextElement();
  104.             drive = dbProps.getProperty("drive");
  105.             url = dbProps.getProperty("url");
  106.             username = dbProps.getProperty("username");
  107.             password = dbProps.getProperty("password");
  108. }
  109. //String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver"; 
  110. //String sConnStr = "jdbc:odbc:webgrid"; 
  111. Class.forName(drive);
  112. //con = DriverManager.getConnection(sConnStr,"sa",""); 
  113. con = DriverManager.getConnection(url,username,password); 
  114. } catch (Exception e){
  115. //out.println("读表发生错误");
  116. }
  117. finally {
  118. //if( con != null ){
  119. // cm.freeConnection( "demo", con );
  120. //}
  121. }
  122. //-------------------------------------------------------
  123. //strKey为?后的值
  124. String strKey=new String(req.getQueryString());
  125. //计算前台SEND来的XML串 存入strXml中
  126. BufferedReader in = req.getReader();
  127. String line = null;
  128. strXml="";
  129. while ((line = in.readLine()) != null) {
  130.       strXml=strXml+line;
  131.     }        
  132. //parse XML串
  133.     try {
  134.         //DOMParserWrapper parser =
  135.         //(DOMParserWrapper)Class.forName("dom.wrappers.DOMParser").newInstance();
  136.         //document = parser.parseXml(strXml);
  137.     org.apache.xerces.parsers.DOMParser parser = 
  138.          new org.apache.xerces.parsers.DOMParser();    
  139.   InputSource myStr=new InputSource();
  140.      Reader myStr1=new StringReader(strXml);
  141.      myStr.setCharacterStream(myStr1);    
  142.         parser.parse(myStr);
  143.         document = parser.getDocument();        
  144. }
  145. catch (Exception e) {
  146.     }
  147. //--------------------------------------------------------
  148. //用一个CASE语句来处理各种方法
  149. if (strKey.equals("fillcombox")) out.print(fillcombox());
  150. //用于用SQL语句填充combox
  151. if (strKey.equals("checksql")) out.print(checksql());
  152. //用于检查SQL语句是否合法
  153. /*
  154. 当数据库为oracle时应加上此四行
  155. if (strKey.equals("fc_insertClob")) out.print(fc_insertClob());
  156. if (strKey.equals("fc_updateClob")) out.print(fc_updateClob());
  157. if (strKey.equals("fc_loadClob")) out.print(fc_loadClob());
  158. if (strKey.equals("fc_loadClob1")) out.print(fc_loadClob1());
  159. */
  160. if (strKey.equals("mytest")) out.print("aaa:"+unescape("%u5E26%u81EA%u5B9A%u4E49%u516C%u5F0F%u7684%u635F%u76CA%u8868")); 
  161. if (strKey.equals("GetReportCell")) out.print(GetReportCell()); //跨表取数
  162. if (strKey.equals("fc_insert")) out.print(fc_insert());
  163. if (strKey.equals("fc_insertunescape")) out.print(fc_insertunescape());
  164. if (strKey.equals("fc_insert1")) out.print(fc_insert1()); //新增主子表
  165. if (strKey.equals("fc_update1")) out.print(fc_update1()); //新增主子表
  166. if (strKey.equals("fc_select")) out.print(fc_select());
  167. if (strKey.equals("fc_FieldToTable")) out.print(fc_FieldToTable());
  168. if (strKey.equals("GetDB")) out.print(GetDB());
  169. if (strKey.equals("fc_select1")) out.print(fc_select1()); //多个SQL同时查的查询
  170. if (strKey.equals("fc_select2")) out.print(fc_select2()); //明细和汇总都要的查询
  171. if (strKey.equals("twors")) out.print(twors());//两个结果集的测试
  172. if (strKey.equals("sqltoxml")) out.print(sqltoxml());//两个结果集的测试
  173. if (strKey.equals("dsnSetSession")) 
  174. {
  175. Node root = document.getChildNodes().item(0);
  176.         String strName=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  177.         String strValue="";
  178.         try {
  179.          //当此节点值为空时
  180.          strValue=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  181. }
  182. catch (Exception e) {   }
  183. HttpSession session = req.getSession(true);
  184. session.setAttribute(strName, strValue);
  185. out.print("");
  186. }
  187. if (strKey.equals("dsnGetSession")) 
  188. {
  189. Node root = document.getChildNodes().item(0);
  190.         String strName=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  191. HttpSession session = req.getSession(true);
  192. String strSR=session.getAttribute(strName).toString();;
  193. out.print(strSR);
  194. }
  195. if (strKey.equals("loadprint")) { 
  196. String strX="function%20detachPage%28%29%7B%20htmlToptmp%3DhtmlTop%3B%20htmlBottomtmp%3DhtmlBottom%3B%20var%20iStart%3D0%3B%20var%20iEnd%3D0%3B%20var%20lngEndLine%3Dt.rows.length-tabCauda%3B%20var%20colwidthXML%3DLoadUserData%28%22setcolwidth%22%2C%22ReportColWidth%22+ReportName%29%3B%20effectiveWidth%3DparseInt%28repWidth-tabLeft-tabRight%29%3B%20var%20oXML1%3Dnew%20ActiveXObject%28%22Microsoft.XMLDOM%22%29%3B%20oXML1.async%3D%22false%22%3B%20oXML1.loadXML%28%22%3Croot%3E%22%20+colwidthXML+%22%3C/root%3E%22%29%3B%20sumcol%3D0%3B%20var%20compressRate%3D1%3B%20if%28prnSet.compressWidth%3D%3D1%29%20%7B%20for%20%28var%20j%3D0%3Bj%3CMaxCols%3Bj++%29%7B%20if%20%28oXML1.documentElement.childNodes.item%28j%29.getAttribute%28%22colSelect%22%29%3D%3D%22block%22%29%7B%20sumcol%3Dsumcol+parseInt%28oXML1.documentElement.childNodes.item%28j%29.getAttribute%28%22colWidth%22%29%29%3B%20%7D%20%7D%20compressRate%3DeffectiveWidth/%28sumcol+MaxCols%29%3B%20if%28compressRate%3E%3D1%20%29%20%7B%20compressRate%3D1%3B%20%7D%20compressColWidth%28compressRate%29%3B%20%7D%20var%20hcompressRate%3D1%3B%20var%20t_outerHTMLbak%3Dt.outerHTML%3B%20if%28prnSet.compressHeight%3D%3D1%29%20%7B%20cur1%3D0%3B%20for%20%28var%20i%3DtabHead%3Bi%3ClngEndLine%3Bi++%29%20%7B%20cur1%3Dcur1+parseInt%28t.rows%28i%29.style.height%29%3B%20%7D%20hcompressRate%3D%28repHeight-tabBottom-tabTop-PageHeadHeight-PageCaudaHeight-heightTop-heightBottom%29/%28cur1+lngEndLine-tabHead%29%20%3B%20if%28hcompressRate%3E%3D1%20%29%20%7B%20hcompressRate%3D1%3B%20%7D%20compressRowHeight%28hcompressRate%2CtabHead%2ClngEndLine%29%3B%20%7D%20if%20%28prnSet.compressFont%21%3D1%29%20%7B%20var%20compressFont%3D0%3B%20if%28hcompressRate%3CcompressRate%29%20%7B%20compressFont%3DhcompressRate%3B%20%7D%20else%20%7B%20compressFont%3DcompressRate%3B%20%7D%20if%28compressFont%3C1%29%7B%20t.style.fontSize%3DparseFloat%28t.style.fontSize%29*compressFont%3B%20%7D%20%7D%20setAutoturnRow%28%29%3B%20cur1%3D0%3B%20for%20%28var%20i%3DtabHead%3Bi%3ClngEndLine%3Bi++%29%20%7B%20cur1%3Dcur1+parseInt%28t.rows%28i%29.style.height%29%3B%20if%20%28cur1%3E%3DrepHeight-tabBottom-tabTop-PageHeadHeight-PageCaudaHeight-heightTop-heightBottom%7C%7C%20i%3D%3DlngEndLine-1%29%7B%20if%20%28cur1%3D%3DrepHeight-tabBottom-tabTop-PageHeadHeight-PageCaudaHeight-heightTop-heightBottom%29%20%7B%20cur1%3D0%3B%20%7D%20else%20%7B%20cur1%3DparseInt%28t.rows%28i%29.style.height%29%3B%20%7D%20sumcol%3D0%3B%20var%20bFind%3Dfalse%3B%20iStart%3D0%3B%20iEnd%3D0%3B%20if%20%28i%3D%3DlngEndLine-1%29%7B%20perPageHTML%3DperPageHTML+t.rows%28i%29.outerHTML%20%3B%20%7D%20for%20%28var%20j%3D0%3Bj%3CMaxCols%3Bj++%29%7B%20if%20%28oXML1.documentElement.childNodes.item%28j%29.getAttribute%28%22colSelect%22%29%3D%3D%22block%22%29%7B%20sumcol%3Dsumcol+parseInt%28oXML1.documentElement.childNodes.item%28j%29.getAttribute%28%22colWidth%22%29%29*compressRate%3B%20%7D%20if%20%28sumcol%3E%3DeffectiveWidth%20%7C%7C%20j%3D%3DMaxCols-1%29%7B%20if%20%28sumcol%3C%3DeffectiveWidth%29%7B%20iEnd%3Dj%3B%20sumcol%3D0%3B%20%7D%20else%20%7B%20iEnd%3Dj-1%3B%20sumcol%3DparseInt%28oXML1.documentElement.childNodes.item%28j%29.getAttribute%28%22colWidth%22%29%29*compressRate%3B%20%7D%20var%20s1%3DHideCol%28strCol%2CiStart%2CiEnd%29%3B%20bFind%3Dtrue%3B%20PageDataAdd%28Pages%29%3B%20arrPage%5BPages%5D%3DhtmlTop+htmlBottom+tabstyle+s1%3B%20arrPage%5BPages%5D%3DarrPage%5BPages%5D+PageHeadHTML%3B%20arrPage%5BPages%5D%3DarrPage%5BPages%5D+perPageHTML+PageCaudaHTML+%22%3C/Table%3E%22%20+%22%3Cimg%20%3E%22%3B%20if%20%28i%3D%3DlngEndLine-1%29%7B%20if%28cur1%3ErepHeight-tabBottom-tabTop-PageHeadHeight-PageCaudaHeight-heightTop-heightBottom%29%7B%20PageDataAdd%28Pages+1%29%3B%20arrPage%5BPages+1%5D%3DhtmlTop+htmlBottom+tabstyle+s1%3B%20arrPage%5BPages+1%5D%3DarrPage%5BPages+1%5D+PageHeadHTML+PageCaudaHTML+%22%3C/Table%3E%22+%22%3Cimg%20%3E%22%3B%20biglabel.innerHTML%3Dbiglabel.innerHTML%20+%22%3Cdiv%20class%3DpreviewDiv%20%3E%u6B63%u5728%u8BA1%u7B97...%3C/DIV%3E%22%3B%20Pages%3DPages+1%3B%20%7D%20%7D%20biglabel.innerHTML%3Dbiglabel.innerHTML%20+%22%3Cdiv%20class%3DpreviewDiv%20%3E%u6B63%u5728%u8BA1%u7B97...%3C/DIV%3E%22%3B%20Pages%3DPages+1%3B%20if%20%28%28j%3D%3DMaxCols-1%20%29%20%26%26%20%28iEnd%3D%3Dj-1%29%20%29%7B%20var%20s1%3DHideCol%28strCol%2CMaxCols-1%2CMaxCols-1%29%3B%20bFind%3Dtrue%3B%20PageDataAdd%28Pages%29%3B%20arrPage%5BPages%5D%3DhtmlTop+htmlBottom+tabstyle+s1%3B%20arrPage%5BPages%5D%3DarrPage%5BPages%5D+PageHeadHTML%3B%20arrPage%5BPages%5D%3DarrPage%5BPages%5D+perPageHTML+PageCaudaHTML+%22%3C/Table%3E%22+%22%3Cimg%20%3E%22%3B%20if%20%28i%3D%3DlngEndLine-1%29%7B%20if%28cur1%3ErepHeight-tabBottom-tabTop-PageHeadHeight-PageCaudaHeight-heightTop-heightBottom%29%7B%20PageDataAdd%28Pages+1%29%3B%20arrPage%5BPages+1%5D%3DhtmlTop+htmlBottom+tabstyle+s1%20%3B%20arrPage%5BPages+1%5D%3DarrPage%5BPages+1%5D+PageHeadHTML+PageCaudaHTML+%22%3C/Table%3E%22+%22%3Cimg%20%3E%22%3B%20biglabel.innerHTML%3Dbiglabel.innerHTML%20+%22%3Cdiv%20class%3DpreviewDiv%20%3E%u6B63%u5728%u8BA1%u7B97...%3C/DIV%3E%22%3B%20Pages%3DPages+1%3B%20%7D%20%7D%20biglabel.innerHTML%3Dbiglabel.innerHTML%20+%22%3Cdiv%20class%3DpreviewDiv%20%3E%u6B63%u5728%u8BA1%u7B97...%3C/DIV%3E%22%3B%20Pages%3DPages+1%3B%20%7D%20iStart%3DiEnd+1%3B%20%7D%20%7D%20perPageHTML%3D%22%22%3B%20%7D%20perPageHTML%3DperPageHTML+t.rows%28i%29.outerHTML%20%3B%20%7D%20mdblRate%3D1%3B%20htmlTop%3D%22%22%3B%20htmlBottom%3D%22%22%3B%20t.outerHTML%3Dt_outerHTMLbak%3B%20t.style.display%3D%22none%22%3B%20for%28var%20i%3D0%3Bi%3CPages%3Bi++%29%7B%20arrPage%5Bi%5D%3Dfc_RepStr%28arrPage%5Bi%5D%2C%22%28P%29%22%2CPages+%22%22%29%3B%20%7D%20%7D%20";
  197. out.println(strX);
  198. }
  199. }
  200. /*
  201. //下面是自定义的方法
  202. //--------------------------------------
  203. private String fc_insertClob() {
  204. Node root = document.getChildNodes().item(0);
  205.     String strName=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  206.     String strTable=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  207.     String strTable1=root.getChildNodes().item(2).getChildNodes().item(0).getNodeValue();
  208. String sTmp = "";
  209. //System.out.println("1:"+strTable) ;
  210. //java.sql.Blob myBlob     = null;
  211.     java.sql.Clob myClob     = null;
  212.     java.sql.Clob myClob1     = null;
  213.   // set Oracle's Auto Commit feature to false. 
  214.   // This is necessary when manipulating Blobs and Clobs.
  215. // CallableStatement cstmt=null;
  216. try {
  217.   con.setAutoCommit(false);
  218.   Statement stmt = con.createStatement();
  219.       stmt.execute("insert into fccell values ('"+strName+"',EMPTY_CLOB(),EMPTY_CLOB(),null)");
  220.       // ============== Manipulating the Clob column ======================
  221.       // get a reference to the clob column
  222.       stmt.execute("select * from fccell where fstrtablename='"+strName+"'");
  223.       ResultSet crs = stmt.getResultSet();
  224.       while ( crs.next() ) {
  225.           myClob = crs.getClob("fstrtable");
  226.   //oracle用此行
  227.           java.io.OutputStream osss =((weblogic.jdbc.common.OracleClob) myClob).getAsciiOutputStream();
  228.           //java.io.OutputStream osss = myClob.getAsciiOutputStream();
  229.           byte[] bss = strTable.getBytes("ASCII");
  230.           osss.write(bss);
  231.           osss.flush();
  232.           myClob1 = crs.getClob("fstrtable1");
  233.           
  234.           java.io.OutputStream osss1 =((weblogic.jdbc.common.OracleClob) myClob1).getAsciiOutputStream();
  235.           //java.io.OutputStream osss1 = myClob1.getAsciiOutputStream();
  236.           byte[] bss1 = strTable1.getBytes("ASCII");
  237.           osss1.write(bss);
  238.           osss1.flush();
  239.       }
  240.       con.commit();
  241.       
  242.       // read back the clob
  243.       //System.out.println("nReading the clob back from the table and displaying:");
  244. }
  245. catch (Exception e){
  246. e.printStackTrace();
  247. sTmp=e.getMessage() ;
  248. }
  249. return sTmp ;
  250. }
  251. //--------------------------------------
  252. private String fc_updateClob() {
  253. Node root = document.getChildNodes().item(0);
  254.     String strName=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  255.     String strTable=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  256.     String strTable1=root.getChildNodes().item(2).getChildNodes().item(0).getNodeValue();
  257. String sTmp = "";
  258. //System.out.println("1:"+strSql) ;
  259. //java.sql.Blob myBlob     = null;
  260.     java.sql.Clob myClob     = null;
  261.     java.sql.Clob myClob1     = null;
  262.   // set Oracle's Auto Commit feature to false. 
  263.   // This is necessary when manipulating Blobs and Clobs.
  264. // CallableStatement cstmt=null;
  265. try {
  266. //con.setAutoCommit(false);
  267.   Statement stmt = con.createStatement();
  268.   //System.out.println("删除成功!"+strName);
  269.       stmt.executeUpdate("delete from fccell where fstrTableName='"+strName+"'");
  270. //con.commit();
  271.   //if (1==1){
  272.           //  stmt.close();
  273.           //  return "";
  274.            //}
  275.   
  276.   con.setAutoCommit(false);
  277.   stmt = con.createStatement();
  278.       //stmt.executeUpdate("delete from fccell where fstrTableName='"+strName+"'");
  279.   //System.out.println("删除成功!");
  280.           
  281.   stmt.execute("insert into fccell values ('"+strName+"',EMPTY_CLOB(),EMPTY_CLOB(),null)");
  282.   //stmt.execute("update fccell set fstrtablename='"+strName+"',fstrtable=EMPTY_CLOB(),fstrtable1=EMPTY_CLOB() where fstrtableName='"+strName+"'");
  283.       // ============== Manipulating the Clob column ======================
  284.       // get a reference to the clob column
  285.       stmt.execute("select * from fccell where fstrtablename='"+strName+"'");
  286.       ResultSet crs = stmt.getResultSet();
  287.       while ( crs.next() ) {
  288.           myClob = crs.getClob("fstrtable");
  289.   //oracle时用此行
  290.           java.io.OutputStream osss =((weblogic.jdbc.common.OracleClob) myClob).getAsciiOutputStream();
  291.           //java.io.OutputStream osss = myClob.getAsciiOutputStream();
  292.           byte[] bss = strTable.getBytes("ASCII");
  293.           osss.write(bss);
  294.           osss.flush();
  295.           myClob1 = crs.getClob("fstrtable1");
  296.           
  297.           java.io.OutputStream osss1 =((weblogic.jdbc.common.OracleClob) myClob1).getAsciiOutputStream();
  298.           //java.io.OutputStream osss1 = myClob1.getAsciiOutputStream();
  299.           byte[] bss1 = strTable1.getBytes("ASCII");
  300.           osss1.write(bss1);
  301.           osss1.flush();
  302.       }
  303.       con.commit();
  304.       
  305.       // read back the clob
  306.       //System.out.println("nReading the clob back from the table and displaying:");
  307. }
  308. catch (Exception e){
  309. e.printStackTrace();
  310. sTmp=e.getMessage() ;
  311. }
  312. return sTmp ;
  313. }
  314. //--------------------------------------
  315. private String fc_loadClob() {
  316. Node root = document.getChildNodes().item(0);
  317.     String strName=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  318. String sTmp = "";
  319. //System.out.println("1:"+strSql) ;
  320. //java.sql.Blob myBlob     = null;
  321.     java.sql.Clob myClob     = null;
  322.     java.sql.Clob myClob1     = null;
  323.   // set Oracle's Auto Commit feature to false. 
  324.   // This is necessary when manipulating Blobs and Clobs.
  325. // CallableStatement cstmt=null;
  326. try {
  327.       Statement readclob = con.createStatement();
  328.       readclob.execute("select * from fccell where fstrtablename='"+strName+"'");
  329.       ResultSet rsreadclob = readclob.getResultSet();
  330.             
  331.       // read the clob in as and ASCII stream, write to a character array, and display
  332.       String sTest="";
  333.       while ( rsreadclob.next() ) { 
  334.           Clob myReadClob =rsreadclob.getClob("fstrtable");    
  335.           int iLen=1;
  336.           iLen=(int)myReadClob.length();
  337.           sTest=myReadClob.getSubString(1,iLen);
  338.               //System.out.println("output " +sTest );
  339.               sTmp=sTest;
  340.       }        
  341. }
  342. catch (Exception e){
  343. e.printStackTrace();
  344. sTmp=e.getMessage() ;
  345. }
  346. return sTmp ;
  347. }
  348. //--------------------------------------
  349. private String fc_loadClob1() {
  350. //为了取另外一个备注字段值fstrTable1
  351. Node root = document.getChildNodes().item(0);
  352.     String strName=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  353. String sTmp = "";
  354. //System.out.println("1:"+strSql) ;
  355. //java.sql.Blob myBlob     = null;
  356.     java.sql.Clob myClob     = null;
  357.     java.sql.Clob myClob1     = null;
  358.   // set Oracle's Auto Commit feature to false. 
  359.   // This is necessary when manipulating Blobs and Clobs.
  360. // CallableStatement cstmt=null;
  361. try {
  362.       Statement readclob = con.createStatement();
  363.       readclob.execute("select * from fccell where fstrtablename='"+strName+"'");
  364.       ResultSet rsreadclob = readclob.getResultSet();
  365.             
  366.       // read the clob in as and ASCII stream, write to a character array, and display
  367.       String sTest="";
  368.       String sTest1="";
  369.       while ( rsreadclob.next() ) { 
  370.           Clob myReadClob =rsreadclob.getClob("fstrtable1");    
  371.           int iLen=1;
  372.           iLen=(int)myReadClob.length();
  373.           sTest=myReadClob.getSubString(1,iLen);
  374.   sTmp=sTest;
  375.               //System.out.println("output " +sTest );
  376.       }        
  377. }
  378. catch (Exception e){
  379. e.printStackTrace();
  380. sTmp=e.getMessage() ;
  381. }
  382. return sTmp ;
  383. }
  384. */
  385. //--------------------------------------
  386. //两个结果集的示例,第一个用连接池打开,第二个用一般方式打开
  387. private String twors() {
  388. // Node root = document.getChildNodes().item(0);
  389.  //   String sField=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  390.   //  String sTable=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  391. /*
  392. String strSql="select flngVoucherID,fstrVoucherTypeName from Voucher" ;
  393. String sTmp="";
  394. try {
  395. Statement stmt = con.createStatement();
  396. rs = stmt.executeQuery(strSql);
  397. while (rs.next()) {
  398. String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver"; 
  399. String sConnStr = "jdbc:odbc:ereport"; 
  400. Class.forName(sDBDriver);
  401. Connection con1 = DriverManager.getConnection(sConnStr,"sa",""); 
  402. String sT=rs.getString(1);
  403. Statement stmt1 = con1.createStatement();
  404. rs1 = stmt1.executeQuery("select fstrAccountName from voucherdetail Where flngVoucherId="+sT);
  405. while (rs1.next()) {
  406. System.out.println("科目:"+rs1.getString(1));
  407. }
  408. }
  409. }
  410. catch (Exception e){
  411. sTmp=e.getMessage() ;
  412. }
  413. return sTmp;
  414. */
  415. return "";
  416. }
  417. //--------------------------------------
  418. private String fc_FieldToTable() {
  419. Node root = document.getChildNodes().item(0);
  420.     String sField=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  421.     String sTable=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  422. String strSql="select "+sField+" From "+sTable ;
  423. String sTmp="";
  424. try {
  425. Statement stmt = con.createStatement();
  426. rs = stmt.executeQuery(strSql);
  427. }
  428. catch (Exception e){
  429. sTmp=e.getMessage() ;
  430. }
  431. return sTmp;
  432. }
  433. //--------------------------------------
  434. private String GetDB() {
  435. Node root = document.getChildNodes().item(0);
  436.         String sConnect=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  437.         String sSql=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  438.         sSql=fcTrans(sSql);
  439.         //System.out.println(sSql);
  440.         String sR="";
  441.         String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver"; //建立数据库连接
  442. String sConnStr = "jdbc:odbc:"+sConnect ; 
  443. try {
  444. Class.forName(sDBDriver);
  445. con = DriverManager.getConnection(sConnStr,"sa",""); 
  446. Statement stmt = con.createStatement();
  447. rs = stmt.executeQuery(sSql);//执行查询建立结果集
  448. if (rs.next()) {
  449. sR=rs.getString(1);
  450. }
  451. rs.close();
  452. stmt.close();
  453. }
  454. catch (Exception e){
  455. sR=e.getMessage();
  456. }
  457. return sR;
  458. }
  459. //--------------------------------------
  460. private String fc_select() {
  461. Node root = document.getChildNodes().item(0);
  462.     String strSql=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  463.     String strPageNo=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  464. int iPageNo=Integer.parseInt(strPageNo,10);//页号
  465.     String strPageSize=root.getChildNodes().item(2).getChildNodes().item(0).getNodeValue();
  466. int iPageSize=Integer.parseInt(strPageSize,10);//页尺寸
  467. strSql=fcTrans(strSql);
  468. //System.out.println("fc_select:"+strSql);
  469. String strX = "<root>";
  470. String sTmp = "";
  471. int iField=1;
  472. int iCount=1;
  473. int i=1;
  474. try {
  475. Statement stmt = con.createStatement();
  476. rs = stmt.executeQuery(strSql);
  477.         ResultSetMetaData rsmd=rs.getMetaData();
  478. while (rs.next()) {
  479. //每页30行
  480. if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  481.         strX = strX + "<record>";
  482. iCount=rsmd.getColumnCount();
  483.         for (iField = 1 ; iField<=iCount ;iField++ ) 
  484. {
  485. //当有NULL字段名时,表示此则无需给值.用fcnull标记名区分.
  486. String colName=rsmd.getColumnName(iField);
  487. if (colName==null) {
  488. strX = strX + "<fcnull></fcnull>" ;
  489. }
  490. else {
  491. String sT=rs.getString(iField);
  492. if (sT==null) sT="";
  493.             strX = strX + "<fc>" + sT +"</fc>" ;
  494.             }
  495. }
  496.         strX = strX + "</record>";
  497.         }
  498.         i = i + 1;
  499. }
  500. i=i-1;
  501. if (i>0) {
  502. strX = strX + "<pages>"+i+"</pages>";
  503. }
  504. strX = strX + "</root>";
  505. rs.close();
  506. }
  507. catch (Exception e){
  508. sTmp=e.getMessage() ;
  509. System.out.println(sTmp);
  510. e.printStackTrace();
  511. }
  512. return strX ;
  513. }
  514. //--------------------------------------
  515. private String fc_select1() {
  516. //将页号和页尺寸两个节点从第一个子节点和第二个子节点改为第一个子节点下的第一个子节点和第二个子节点
  517. //将第二个子节点空出来给设置数据源用.
  518. //第二个子节点下将有三个子节点:数据源名称,用户名,密码.
  519. Node root = document.getChildNodes().item(0);
  520.     String strPageNo=root.getChildNodes().item(0).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  521. int iPageNo=Integer.parseInt(strPageNo,10);//页号
  522.     String strPageSize=root.getChildNodes().item(0).getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  523. int iPageSize=Integer.parseInt(strPageSize,10);//页尺寸
  524. //数据源
  525.     strDataSource=root.getChildNodes().item(1).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  526.     strUserName=root.getChildNodes().item(1).getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  527.     try {
  528.      strPassword=root.getChildNodes().item(1).getChildNodes().item(2).getChildNodes().item(0).getNodeValue();
  529.     }
  530.     catch (Exception e){
  531.      strPassword="";
  532.     }
  533. //-------
  534. //多SQL查询
  535. String strX = "<root>";
  536. int ii=0;
  537. int i=1;
  538. //按顺序取出SQL节点
  539. for(ii=2;ii<root.getChildNodes().getLength();ii++){
  540.     String strSql=root.getChildNodes().item(ii).getChildNodes().item(0).getNodeValue();
  541. strX=strX+fc_selectTmp(iPageNo,iPageSize,i,strSql);
  542. i=iPosition;
  543. } //For循环结束
  544. i=i-1;
  545. if (i>0) {
  546. strX = strX + "<pages>"+i+"</pages>";
  547. }
  548. strX = strX + "</root>";
  549. return strX ;
  550. }
  551. //--------------------------------------
  552. //计算一个SQL查询,供fc_select1 fc_select2类函数使用
  553. private String fc_selectTmp(int iPageNo,int iPageSize,int iPos,String strSql) {
  554. //iPageNo为起始页号,iPageSize为页尺寸,iPos为所有查询结果的行位置,strSql为要执行的SQL语句
  555. //返回SQL语句的运行结果,结果为以<record>...</record>形式的XML串
  556. //
  557. /*
  558. try{
  559. byte [] by = strSql.getBytes("ISO-8859-1"); //
  560. String ts1 = new String(by,"GB2312");
  561. String ts2 = new String(by,"UTF-8");
  562. byte [] by1 = strSql.getBytes("GB2312"); //
  563. String ts3 = new String(by1,"ISO-8859-1");
  564. String ts4 = new String(by1,"UTF-8");
  565. byte [] by2 = strSql.getBytes("UTF-8"); //
  566. String ts5 = new String(by2,"ISO-8859-1");
  567. String ts6 = new String(by2,"GB2312");
  568. System.out.println("ts1:"+ts1+";"+ts2+ts3);
  569. System.out.println(ts4+ts5+ts6);
  570. System.out.println("中:"+strSql);
  571. }catch(Exception e){}
  572. */
  573. //System.out.println("中:"+strSql);
  574. //从fc_select2中调用此函数时已经转过码了,不能再转
  575. if(strSql.indexOf("%20")>0){
  576. strSql=fcTrans(strSql);
  577. }
  578. //System.out.println("后:"+strSql);
  579. String sTmp = "";
  580. String strX = "";
  581. int iField=1;
  582. int iCount=1;
  583. int i=iPos;
  584. try {
  585. String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver"; 
  586. String sConnStr = "jdbc:odbc:"+strDataSource; 
  587. Class.forName(sDBDriver);
  588. Connection conTmp = DriverManager.getConnection(sConnStr,strUserName,strPassword); 
  589. /**
  590. 注:当改动数据库连接时应将下面这行的conTmp改为con,同时去掉上面四行.
  591. */
  592. Statement stmtTmp = conTmp.createStatement();
  593. ResultSet rsTmp = stmtTmp.executeQuery(strSql);
  594.         ResultSetMetaData rsmdTmp=rsTmp.getMetaData();
  595. while (rsTmp.next()) {
  596. //每页30行
  597. if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  598.         strX = strX + "<record>";
  599. iCount=rsmdTmp.getColumnCount();
  600.         for (iField = 1 ; iField<=iCount ;iField++ ) 
  601. {
  602. //当有NULL字段名时,表示此则无需给值.用fcnull标记名区分.
  603. String colName=rsmdTmp.getColumnName(iField);
  604. if (colName==null) {
  605. strX = strX + "<fcnull></fcnull>" ;
  606. }
  607. else {
  608. String sT=rsTmp.getString(iField);
  609. if (sT==null) sT="";
  610.             strX = strX + "<fc>" + sT +"</fc>" ;
  611.             }
  612. }
  613.         strX = strX + "</record>";
  614.         }
  615.         i = i + 1;
  616. }
  617. rsTmp.close();
  618. stmtTmp.close();
  619. con.close();
  620. }
  621. catch (Exception e){
  622. sTmp=e.getMessage() ;
  623. System.out.println("0712:"+sTmp);
  624. System.out.println("0712:"+strSql);
  625. }
  626. iPosition=i; //用iPosition全局变量将i值传到调用函数中.
  627. //System.out.println("strX="+strSql);
  628. return strX;
  629. }
  630. //--------------------------------------
  631. //带分组小计的多SQL查询
  632. private String fc_select2() {
  633. //sXml的结构:
  634. //1页号 2页尺寸 3主SQL<1SQL语句 2<before... > > 4Group<1SQL语句 2GroupField >
  635. int i=1;
  636. String beforeSum="0"; //=0表示合计行在后,=1表示合计行在前。
  637. String strX = "";
  638. String strX1 = "";
  639. String strRetXml = ""; //返回的总的Xml串
  640. //将页号和页尺寸两个节点从第一个子节点和第二个子节点改为第一个子节点下的第一个子节点和第二个子节点
  641. //将第二个子节点空出来给设置数据源用.
  642. //第二个子节点下将有三个子节点:数据源名称,用户名,密码.
  643. Node root = document.getChildNodes().item(0);
  644.     String strPageNo=root.getChildNodes().item(0).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  645. int iPageNo=Integer.parseInt(strPageNo,10);//页号
  646.     String strPageSize=root.getChildNodes().item(0).getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  647. int iPageSize=Integer.parseInt(strPageSize,10);//页尺寸
  648. //数据源
  649.     strDataSource=root.getChildNodes().item(1).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  650.     strUserName=root.getChildNodes().item(1).getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  651.     try {
  652.      strPassword=root.getChildNodes().item(1).getChildNodes().item(2).getChildNodes().item(0).getNodeValue();
  653.     }
  654.     catch (Exception e){
  655.      strPassword="";
  656.     }
  657. //-------
  658. //第3个子节点的第1个子节点的值用如下求法.
  659.     String strSqlBak=root.getChildNodes().item(2).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  660. String strSql="";
  661. strSql=fcTrans(strSqlBak);
  662. //System.out.println(strSql);
  663. //第3个子节点的第2个子节点下的第1个子节点的值用如下求法.
  664.     String strStartXml=""; //首合计行的xml串
  665.     //总计行之类的
  666.     try {
  667.      //如有一个节点表示首合计行,如有二个节点表示第一为首合计行,第二为尾合计行
  668.     String sStartSql=root.getChildNodes().item(2).getChildNodes().item(1).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  669. //此处现只假定只有一个查询,如有多个,则此处要用循环
  670. strStartXml=fc_selectTmp(iPageNo,iPageSize,i,sStartSql);
  671. i=iPosition;
  672. }
  673. catch (Exception e){
  674. }
  675. //-----------------
  676. String sGroup1="";
  677. String sGroup2="";
  678. //String sGroup3="";
  679. //第一个分组
  680.     sGroup1=root.getChildNodes().item(3).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  681. sGroup1=fcTrans(sGroup1);
  682. //分组字段名
  683.     String sGroupField1=root.getChildNodes().item(3).getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  684. //第二个分组
  685.     sGroup2=root.getChildNodes().item(4).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  686. sGroup2=fcTrans(sGroup2);
  687.     String sGroupField2=root.getChildNodes().item(4).getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  688. String sTmp = "";
  689. int iField=1;
  690. int iCount=1;
  691. String sGroupKey1=""; //保存分组字段的值
  692. String sGroupKey2="";
  693. String tmpsGroup="";
  694. try {
  695. String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver"; 
  696. String sConnStr = "jdbc:odbc:"+strDataSource; 
  697. Class.forName(sDBDriver);
  698. Connection con1 = DriverManager.getConnection(sConnStr,strUserName,strPassword); 
  699. Connection con2 = DriverManager.getConnection(sConnStr,strUserName,strPassword); 
  700. /**
  701. 注:当改动数据库连接时应将下面的con1和con2改为con,同时去掉上面5行.
  702. */
  703. Statement stmt1 = con1.createStatement();
  704. Statement stmt2 = con2.createStatement();
  705. rs1 = stmt1.executeQuery(sGroup1);
  706.         ResultSetMetaData rsmd1=rs1.getMetaData();
  707. while (rs1.next()) {
  708. //strX="";
  709. //strX1="";
  710. sGroupKey1=rs1.getString(1);
  711. //算出第一个分组的合计行值
  712. //if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  713.         strX = "<recordsum1>"; //设特别tagName用于在前台设底色等属性
  714. iCount=rsmd1.getColumnCount();
  715.         //第一个字段是分组字段值,所以从2开始
  716.         for (iField = 2 ; iField<=iCount ;iField++ ) 
  717. {
  718. //当有NULL字段名时,表示此则无需给值.用fcnull标记名区分.
  719. String colName=rsmd1.getColumnName(iField);
  720. if (colName==null) {
  721. strX = strX + "<fcnull></fcnull>" ;
  722. }
  723. else {
  724. String sT=rs1.getString(iField);
  725. if (sT==null) sT="";
  726. if(iField == 2)
  727. strX = strX + "<fc>小计 " + sT +"</fc>" ;
  728. else 
  729.              strX = strX + "<fc>" + sT +"</fc>" ;
  730.             }
  731. }
  732.         strX = strX + "</recordsum1>";
  733.         //}
  734.         
  735. if(sGroup2.equals("fcnull")){
  736. //只有一级分组
  737. //准备下一个的SQL语句
  738. tmpsGroup=fc_RepStr(strSql,"1999=1999","1999=1999"+" and " +sGroupField1+"='"+sGroupKey1+"'");
  739. //此处定合计行在明细行的前面还是后面
  740. if(beforeSum.equals("1")){
  741. //-------合计行在前
  742. if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  743. strRetXml+=strX;
  744. }
  745. i++;
  746. strRetXml+=fc_selectTmp(iPageNo,iPageSize,i,tmpsGroup);
  747. i=iPosition;
  748. }
  749. else {
  750. //-------合计行在后
  751. strRetXml+=fc_selectTmp(iPageNo,iPageSize,i,tmpsGroup);
  752. i=iPosition;
  753. if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  754. strRetXml+=strX;
  755. }
  756. i++;
  757. }
  758. }
  759. else { //有二级分组
  760. //准备下一个的SQL语句
  761. tmpsGroup=fc_RepStr(sGroup2,"1999=1999","1999=1999"+" and " +sGroupField1+"='"+sGroupKey1+"'");
  762. //System.out.println("my:"+tmpsGroup);
  763. rs2 = stmt2.executeQuery(tmpsGroup);
  764.         ResultSetMetaData rsmd2=rs2.getMetaData();
  765. if(beforeSum.equals("1")){
  766. //-------合计行在前
  767. if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  768. strRetXml+=strX;
  769. }
  770. i++;
  771. }
  772. while (rs2.next()) {
  773. sGroupKey2=rs2.getString(1);
  774. //算出第二个分组的合计行值
  775.         strX1 =  "<recordsum2>";
  776. iCount=rsmd2.getColumnCount();
  777.         //第一个字段是分组字段值,所以从2开始
  778.         for (iField = 2 ; iField<=iCount ;iField++ ) 
  779. {
  780. //当有NULL字段名时,表示此则无需给值.用fcnull标记名区分.
  781. String colName=rsmd2.getColumnName(iField);
  782. if (colName==null) {
  783. strX1 = strX1 + "<fcnull></fcnull>" ;
  784. }
  785. else {
  786. String sT=rs2.getString(iField);
  787. if (sT==null) sT="";
  788. if(iField == 2)
  789. strX1 = strX1 + "<fc>小 计 " + sT +"</fc>" ;
  790. else 
  791.             strX1 = strX1 + "<fc>" + sT +"</fc>" ;
  792.             }
  793. }
  794.         strX1 = strX1 + "</recordsum2>";
  795. //-------------------------------
  796. //准备下一个的SQL语句
  797. tmpsGroup=fc_RepStr(strSql,"1999=1999","1999=1999"+" and " +sGroupField1+"='"+sGroupKey1+"'"+" and " +sGroupField2+"='"+sGroupKey2+"'");
  798. //此处定合计行在明细行的前面还是后面
  799. if(beforeSum.equals("1")){
  800. //-------合计行在前
  801. if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  802. strRetXml+=strX1;
  803. }
  804. i++;
  805. strRetXml+=fc_selectTmp(iPageNo,iPageSize,i,tmpsGroup);
  806. i=iPosition;
  807. }
  808. else {
  809. //-------合计行在后
  810. strRetXml+=fc_selectTmp(iPageNo,iPageSize,i,tmpsGroup);
  811. i=iPosition;
  812. if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  813. strRetXml+=strX1;
  814. }
  815. i++;
  816. }
  817. }//二级分组的循环结束
  818. if(beforeSum.equals("0")){
  819. //-------合计行在后
  820. if (i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) {
  821. strRetXml+=strX;
  822. }
  823. i++;
  824. }
  825. } //判断有无二级分组的IF结束
  826. }//一级分组的循环结束
  827. //----- loop end
  828. //第3个子节点(mainsql)的第3个子节点下(end)的第1个子节点(sql)的值用如下求法.
  829.     String strEndXml=""; //首合计行的xml串
  830.     //总计行之类的
  831.     try {
  832.      //如有一个节点表示首合计行,如有二个节点表示第一为首合计行,第二为尾合计行
  833.     String sStartSql=root.getChildNodes().item(2).getChildNodes().item(2).getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  834. //System.out.println("endsql:"+sStartSql);
  835. //此处现只假定只有一个查询,如有多个,则此处要用循环
  836. strEndXml=fc_selectTmp(iPageNo,iPageSize,i,sStartSql);
  837. i=iPosition;
  838. }
  839. catch (Exception e){
  840. }
  841. //-----------------
  842. i=i-1;
  843. if (i>0) {
  844. strRetXml = strStartXml+strRetXml +strEndXml+ "<pages>"+i+"</pages>";
  845. }
  846. strRetXml = "<root>"+strRetXml + "</root>";
  847. //rs.close();
  848. }
  849. catch (Exception e){
  850. e.printStackTrace() ;
  851. sTmp=e.getMessage() ;
  852. System.out.println("071201"+sTmp);
  853. }
  854. return strRetXml ;
  855. }
  856. //--------------------------------------
  857. private String fc_insertunescape() {
  858. Node root = document.getChildNodes().item(0);
  859.     String strSql=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  860. // strSql=fcTrans(strSql);
  861. String sTmp = "";
  862. // CallableStatement cstmt=null;
  863. try {
  864. Statement stmt = con.createStatement();
  865. // stmt.executeQuery(strSql);
  866. stmt.executeUpdate(strSql);
  867. /*
  868. cstmt=con.prepareCall("{call sp_getID(?)}");
  869. cstmt.registerOutParameter(1,java.sql.Types.INTEGER,1);
  870. cstmt.executeUpdate();
  871. sTmp="<dsnID>"+ cstmt.getInt(1)+"</dsnID>";
  872. */
  873. }
  874. catch (Exception e){
  875. sTmp=e.getMessage() ;
  876. }
  877. return sTmp ;
  878. }
  879. //--------------------------------------
  880. private String fc_insert() {
  881. Node root = document.getChildNodes().item(0);
  882.     String strSql=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  883. strSql=fcTrans(strSql);
  884. String sTmp = "";
  885. // CallableStatement cstmt=null;
  886. try {
  887. Statement stmt = con.createStatement();
  888. // stmt.executeQuery(strSql);
  889. stmt.executeUpdate(strSql);
  890. /*
  891. cstmt=con.prepareCall("{call sp_getID(?)}");
  892. cstmt.registerOutParameter(1,java.sql.Types.INTEGER,1);
  893. cstmt.executeUpdate();
  894. sTmp="<dsnID>"+ cstmt.getInt(1)+"</dsnID>";
  895. */
  896. }
  897. catch (Exception e){
  898. sTmp=e.getMessage() ;
  899. }
  900. return sTmp ;
  901. }
  902. //--------------------------------------
  903. private String fc_insert1() {
  904. //凭证增加
  905. Node root = document.getChildNodes().item(0);
  906. String sTmp = "";
  907. CallableStatement cstmt=null;
  908. try {
  909. Statement stmt = con.createStatement();
  910. int i;
  911. //System.out.println(root.getChildNodes().getLength());
  912.     String strSql=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  913. strSql=fcTrans(strSql);
  914. stmt.executeUpdate(strSql);
  915. String sID="1"; //存主表新生成的ID
  916. try {
  917. //SQL Server 的存储过程,用于计算自动ID
  918. cstmt=con.prepareCall("{call sp_getID(?)}");
  919. cstmt.registerOutParameter(1,java.sql.Types.INTEGER,1);
  920. cstmt.executeUpdate();
  921. sID=""+cstmt.getInt(1);
  922. }
  923. catch (Exception e1){
  924. try {
  925. //计算MS Access数据库的主表ID
  926. String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver"; 
  927. String sConnStr = "jdbc:odbc:webprint"; 
  928. Class.forName(sDBDriver);
  929. Connection con1 = DriverManager.getConnection(sConnStr,"sa",""); 
  930. Statement stmt1 = con1.createStatement();
  931. rs1 = stmt1.executeQuery("select max(flngSendOutID) From SendOut");
  932. if (rs1.next()) {
  933. sID=rs1.getString(1);
  934. }
  935. }
  936. catch (Exception e2){
  937. }
  938. }
  939. //追加子表内容
  940. for(i=1;i<root.getChildNodes().getLength();i++) {
  941.     strSql=root.getChildNodes().item(i).getChildNodes().item(0).getNodeValue();
  942. strSql=fcTrans(strSql);
  943. strSql=strSql+sID+" )";
  944. stmt.executeUpdate(strSql);
  945. }
  946. }
  947. catch (Exception e){
  948. System.out.println(e.getMessage()) ;
  949. }
  950. return sTmp ;
  951. }
  952. //--------------------------------------
  953. private String fc_update1() {
  954. //凭证修改
  955. Node root = document.getChildNodes().item(0);
  956. String sTmp = "";
  957. String strSql="";
  958. try {
  959. Statement stmt = con.createStatement();
  960. int i;
  961. for(i=0;i<root.getChildNodes().getLength();i++) {
  962.     strSql=root.getChildNodes().item(i).getChildNodes().item(0).getNodeValue();
  963. strSql=fcTrans(strSql);
  964. stmt.executeUpdate(strSql);
  965. }
  966. }
  967. catch (Exception e){
  968. System.out.println(e.getMessage()) ;
  969. }
  970. return sTmp ;
  971. }
  972. //--------------------------------------
  973. /**
  974. *检查SQL语句是否为合法的SQL语句
  975. *@param sql 要检查的SQL语句.
  976. *@return 是则返回空,否则返回非空
  977. *@date 2002-05-20
  978. **/
  979. private String checksql() {
  980. Node root = document.getChildNodes().item(0);
  981.     String strSql=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  982. strSql=fcTrans(strSql);
  983. //System.out.println(strSql);
  984. String strX = "";
  985. try {
  986. Statement stmt = con.createStatement();
  987. rs = stmt.executeQuery(strSql);
  988. rs.close();
  989. }
  990. catch (Exception e){
  991. strX=e.getMessage() ;
  992. }
  993. return strX ;
  994. }
  995. //--------------------------------------
  996. private String fillcombox() {
  997. //拼成的XML串的节点名为option,可以直接填入combox中
  998. //返回的XML串无根节点.
  999. Node root = document.getChildNodes().item(0);
  1000.     String strSql=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  1001. /*
  1002.     String strPageNo=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  1003. int iPageNo=Integer.parseInt(strPageNo,10);//页号
  1004.     String strPageSize=root.getChildNodes().item(2).getChildNodes().item(0).getNodeValue();
  1005. int iPageSize=Integer.parseInt(strPageSize,10);//页尺寸
  1006. */
  1007. strSql=fcTrans(strSql);
  1008. //System.out.println(strSql);
  1009. String strX = "";
  1010. String sTmp = "";
  1011. int iField=1;
  1012. int iCount=1;
  1013. int i=1;
  1014. try {
  1015. Statement stmt = con.createStatement();
  1016. rs = stmt.executeQuery(strSql);
  1017.          ResultSetMetaData rsmd=rs.getMetaData();
  1018. iCount=rsmd.getColumnCount();
  1019.                 String sT="";
  1020. while (rs.next()) {
  1021. //每页30行
  1022. //if ((i>(iPageNo-1)*iPageSize && i<=iPageNo*iPageSize) || iPageSize==-1) {
  1023.         //strX = strX + "<option>";
  1024. if(iCount>1){
  1025. //假定两列时,第一列为value,第二列为text
  1026.    sT=rs.getString(1);
  1027.    if (sT==null) sT="";
  1028.    strX+="<option value='" +sT;
  1029.    sT=rs.getString(2);
  1030.    if (sT==null) sT="";
  1031.    strX+="' >"+sT+"</option>";
  1032. }else {
  1033. //一列时则value和text相同
  1034.    sT=rs.getString(1);
  1035.    if (sT==null) sT="";
  1036.    strX+="<option value='" +sT;
  1037.    strX+="' >"+sT+"</option>";
  1038. }
  1039. //                 }
  1040.                 i = i + 1;
  1041. }
  1042. //strX = strX + "</root>";
  1043. rs.close();
  1044. }
  1045. catch (Exception e){
  1046. sTmp=e.getMessage() ;
  1047. System.out.println(sTmp);
  1048. }
  1049. return strX ;
  1050. }
  1051. //--------------------------------------
  1052. private String SqlToField(String strSql) {
  1053. //用一个SQL语句返回一个字段的第一个记录值
  1054. String strR =  "";
  1055. try {
  1056. Statement stmt = con.createStatement();
  1057. rs = stmt.executeQuery(strSql);
  1058. if (rs.next()) {
  1059.     strR = rs.getString(1) ;
  1060. }
  1061. rs.close();
  1062. stmt.close();
  1063. }
  1064. catch (Exception e){
  1065. //out.println("读表发生错误");
  1066. }
  1067. return strR;
  1068. }
  1069. //--------------------------------------
  1070. //报表增加
  1071. //--------------------------------------
  1072. private String GetReportCell() {
  1073. //找到指定位置的单元的值.
  1074. Node root = document.getChildNodes().item(0);
  1075. String sRow = root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  1076. int iRow=Integer.parseInt(sRow,10);
  1077. String sCol =root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  1078. int iCol=Integer.parseInt(sCol,10);
  1079. String strTableName =root.getChildNodes().item(2).getChildNodes().item(0).getNodeValue();
  1080. strTableName=fcTrans(strTableName);
  1081. //int iRow=Integer.parseInt(sRow,10);
  1082. String strSql="";
  1083. //String strID=TableNameToID(strTableName);
  1084. //strSql = "Select fstrDiv1 From cellsheet where flngID=" + strID + " and flngSheetNo=" + strPage  ;
  1085. strSql = "Select fstrTable1 From fcCell where fstrTableName='" + strTableName+"'"  ;
  1086. //String sLogCol=ToLogCol(sRow,sCol,"Select fstroCoor From cellsheet where flngID=" + strID + " and flngSheetNo=" + strPage );
  1087. //int iCol=Integer.parseInt(sLogCol,10);
  1088. String strR="";
  1089. String strR1="";
  1090. int iStart=0;
  1091. int iStartTmp=0;
  1092. int iTmp=0;
  1093. int iEnd=0;
  1094. try {
  1095. Statement stmt = con.createStatement();
  1096. rs = stmt.executeQuery(strSql);
  1097. if (rs.next()) {
  1098.     strR = rs.getString(1) ;
  1099. }
  1100. rs.close();
  1101. stmt.close();
  1102. //strR1=strR;
  1103. //查找定位TR TD
  1104. //iStart=strR.indexOf("%20id%3Dt%20",0);//查找 id=t 
  1105. for (int i=0;i<=iRow;i++) {
  1106. iStartTmp=strR.indexOf("%3CTR",iStart+1);//TR开始符
  1107. if (iStartTmp>0) {
  1108. iStart=iStartTmp;
  1109. }
  1110. }
  1111. if (iStartTmp>0) {
  1112. for (int i=0;i<=iCol;i++) {
  1113. iStartTmp=strR.indexOf("%3CTD",iStart+1); //TD开始符
  1114. if (iStartTmp>0) {
  1115. iStart=iStartTmp;
  1116. }
  1117. }
  1118. iStart=strR.indexOf("%3E",iStart);//TD后的第一个>
  1119. iEnd=strR.indexOf("%3C/TD%3E",iStart);//TD结束符
  1120. if (iEnd>iStart && iStart>0) {
  1121. strR=strR.substring(iStart+3,iEnd);
  1122. }
  1123. }
  1124. }
  1125. catch (Exception e){
  1126. System.out.println(e.getMessage());
  1127. }
  1128. //return Integer.toString(iEnd) ;
  1129. System.out.println(strR);
  1130. return "<root>"+strR+"</root>";
  1131. }
  1132. //--------------------------------------
  1133. //--------------------------------------
  1134. //通用函数
  1135. private  String fc_RepStr(String mainStr,String findStr,String replaceStr){
  1136. //多次替代
  1137. int iStart=0;
  1138. int iEnd=0;
  1139. String sRet="";
  1140. while (iStart<mainStr.length()) {
  1141. iEnd=mainStr.indexOf(findStr,iStart);
  1142. if (iEnd<0) {
  1143. iEnd=mainStr.length();
  1144. sRet=sRet+mainStr.substring(iStart,iEnd);
  1145. }
  1146. else {
  1147. sRet=sRet+mainStr.substring(iStart,iEnd)+replaceStr;
  1148. }
  1149. iStart=iEnd+findStr.length();
  1150. }
  1151. return sRet;
  1152. }
  1153. private String rTrim(String str){
  1154.      String rstr = str;
  1155.   if(str == null)
  1156.          {
  1157.     rstr = "";
  1158.   }
  1159.          else
  1160.          {
  1161.     if(str.length() == 0) rstr = "";
  1162.     if(str.length() > 0)
  1163.     {
  1164.       for(int i = str.length() ; i  >  0 ; i--)
  1165.              {
  1166.      if(str.substring(i-1,i).equals(" "))  
  1167.        rstr = rstr.substring(0,i-1);
  1168.      else break;
  1169.    }
  1170.      } 
  1171.        
  1172.   }
  1173.   return rstr;
  1174. //--------------------------------------------
  1175. private String  XmlOut(ResultSet oRs , String sRowEntityName,long EntFormat ) 
  1176. {
  1177. String sSet="";
  1178. try {
  1179. //oRs.first();
  1180. while (oRs.next())
  1181. {
  1182.     sSet = sSet + RecordToXMLEntity(oRs, sRowEntityName, EntFormat) ;
  1183. }
  1184. }
  1185. catch (Exception e)
  1186. {
  1187. return e.getMessage();
  1188. }
  1189. return sSet ;
  1190. }
  1191. private String  RecordToXMLEntity(ResultSet oRs , String EntityName,long EntFormat)
  1192. {
  1193. String sEty ="";
  1194. int iField=1;
  1195. int iCount=1;
  1196.     try {
  1197.     ResultSetMetaData rsmd=oRs.getMetaData();
  1198. iCount=rsmd.getColumnCount();
  1199. if (EntFormat==1) 
  1200. {
  1201. //属性
  1202.         sEty = "<" + EntityName ;
  1203.         for (iField = 1 ; iField<=iCount ;iField++ ) 
  1204. {
  1205.             sEty = sEty + " " + rsmd.getColumnName(iField) +"='" + oRs.getString(iField) +"'" ;
  1206. }
  1207.         sEty = sEty + "/>" + "n";
  1208. }
  1209. else
  1210. {
  1211. //节点
  1212.     sEty = "<" + EntityName +">" +"n" ;
  1213.         for (iField = 1 ; iField<=iCount ; iField++) 
  1214.         {
  1215.             sEty = sEty +"<" +  rsmd.getColumnName(iField) +">" + oRs.getString(iField) +"</" + rsmd.getColumnName(iField) +">";
  1216.         }
  1217.         sEty = sEty +"n" +"</" + EntityName +">" +"n";
  1218. }
  1219. }
  1220. catch (Exception e)
  1221. {
  1222. }
  1223. return sEty;
  1224. }
  1225. //-----------------------------------------------------
  1226. private Attr[] sortAttributes(NamedNodeMap attrs) {
  1227.     int len = (attrs != null) ? attrs.getLength() : 0;
  1228.     Attr array[] = new Attr[len];
  1229.     for ( int i = 0; i < len; i++ ) {
  1230.         array[i] = (Attr)attrs.item(i);
  1231.     }
  1232.     for ( int i = 0; i < len - 1; i++ ) {
  1233.         String name  = array[i].getNodeName();
  1234.         int    index = i;
  1235.         for ( int j = i + 1; j < len; j++ ) {
  1236.             String curName = array[j].getNodeName();
  1237.             if ( curName.compareTo(name) < 0 ) {
  1238.                 name  = curName;
  1239.                 index = j;
  1240.             }
  1241.         }
  1242.         if ( index != i ) {
  1243.             Attr temp    = array[i];
  1244.             array[i]     = array[index];
  1245.             array[index] = temp;
  1246.         }
  1247.     }
  1248.     return(array);
  1249. } // sortAttributes(NamedNodeMap):Attr[]
  1250. //--------------------------------------------
  1251. //WebCode中用
  1252. private  String sqltoxml() 
  1253. {
  1254. Node root=document.getChildNodes().item(0);
  1255. String strpage=root.getChildNodes().item(0).getChildNodes().item(0).getNodeValue();
  1256. String strsql=root.getChildNodes().item(1).getChildNodes().item(0).getNodeValue();
  1257. strsql=fcTrans(strsql);
  1258. String strsearch=root.getChildNodes().item(2).getChildNodes().item(0).getNodeValue();
  1259. String strrownum=root.getChildNodes().item(3).getChildNodes().item(0).getNodeValue();
  1260. String showcheckbox=root.getChildNodes().item(4).getChildNodes().item(0).getNodeValue();
  1261. String blnempty=root.getChildNodes().item(5).getChildNodes().item(0).getNodeValue();
  1262. //加空行
  1263. showcheckbox=showcheckbox.toUpperCase();
  1264. int intpage=Integer.parseInt(strpage);//开始页
  1265. int intrownum=Integer.parseInt(strrownum);//页尺寸
  1266. String strX="";
  1267. try {
  1268. //建立数据库连接
  1269. /*
  1270. strDataSource="webgrid";
  1271. strUserName="sa";
  1272. strPassword="";
  1273. String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver"; 
  1274. String sConnStr = "jdbc:odbc:"+strDataSource; 
  1275. Class.forName(sDBDriver);
  1276. Connection con1 = DriverManager.getConnection(sConnStr,strUserName,strPassword); 
  1277. Statement stmt = con1.createStatement();
  1278. */
  1279. //原来的
  1280. Statement stmt = con.createStatement();
  1281. //执行查询建立结果集
  1282. //-----------------
  1283. //System.out.print(strsearch);
  1284. int i=1;
  1285. if (strsearch.compareTo("###")!=0){
  1286. rs = stmt.executeQuery(strsql);
  1287. boolean bfind=false;
  1288. while(rs.next()){
  1289. String searchone=rs.getString(1);
  1290. //out.print(searchone);
  1291. if (searchone.equals(strsearch)){
  1292. bfind=true;
  1293. break;
  1294. }
  1295. i=i+1;
  1296. }
  1297. rs.close();
  1298. if (bfind==true){
  1299. if (i<=intrownum){
  1300. intpage=1;
  1301. }
  1302. else {
  1303. if (i%intrownum>0){
  1304. intpage=i/intrownum+1;
  1305. }
  1306. else {
  1307. intpage=i/intrownum;
  1308. }
  1309. }
  1310. }
  1311. //自动定位到当前选择所在值的页
  1312. }
  1313. //out.print("intpage="+intpage);
  1314. //-----------------
  1315. // System.out.print(intpage);
  1316. rs = stmt.executeQuery(strsql);
  1317. ResultSetMetaData rsmd=rs.getMetaData();
  1318. strX="<root>";
  1319. String sLabel="";
  1320. int k=0;
  1321. int thisrow=0;
  1322. int pagenumber=0;//总页数
  1323. int iFind=0; //控制在开始处插入一个空白行
  1324. while (rs.next()) {
  1325. if (blnempty.equals("true") && iFind==0) {
  1326. //插入一个空白行
  1327. strX=strX+"<tr height='16'>";
  1328. for (i=1;i<=rsmd.getColumnCount();i++) {
  1329.         strX = strX + "<td></td>";
  1330. }
  1331. strX=strX+"</tr>";
  1332. iFind=1;
  1333. }
  1334. if (k>=(intpage-1)*intrownum && k<(intpage)*intrownum){
  1335. strX = strX + "<tr>";
  1336. for (i=1;i<=rsmd.getColumnCount();i++) {
  1337.         sLabel=rsmd.getColumnLabel(i);
  1338.         //System.out.println(rsmd.getColumnTypeName(i));
  1339. String sT=rs.getString(i);
  1340. if (sT==null) sT="";
  1341.         strX = strX + "<td>" + sT + "</td>";
  1342. }
  1343. if (showcheckbox.equals("TRUE"))
  1344.   strX = strX + "<td width='30'><input type='checkbox'></input></td>"+"</tr>";
  1345.                 else 
  1346.                     strX = strX + "</tr>";
  1347. }
  1348. k=k+1;
  1349. }
  1350. if (k%intrownum>0)
  1351.      pagenumber=k/intrownum+1;
  1352.         else 
  1353.             pagenumber=k/intrownum;
  1354. strX=strX+"<pagenumber>"+pagenumber+"</pagenumber><intpage>"+intpage+"</intpage></root>";
  1355. } catch (Exception e){
  1356. strX=e.getMessage();
  1357. }
  1358. return strX;
  1359. }
  1360. private  String fcTrans(String sSource) 
  1361. {
  1362. // GB2312
  1363. //XML节点中的汉字经8859_1==>UTF-8转换后用System.out.println输出正常
  1364. /*
  1365. UTF-8 ==> GB2312 1
  1366. UTF-8 ==> 8859_1 2
  1367. GB2312 ==> UTF-8 3
  1368. 8859_1 ==> UTF-8 4
  1369. GB2312 ==> 8859_1 5
  1370. 8859_1 ==> GB2312 6
  1371. */
  1372. String unicodesR ="";
  1373. try {
  1374. //byte [] by = sSource.getBytes("8859_1"); //
  1375. //unicodesR = new String(by,"UTF-8");
  1376. //System.out.println("b:"+sSource);
  1377. unicodesR=unescape(sSource);
  1378. }
  1379. catch (Exception e){
  1380. }
  1381. //System.out.println("a:"+unicodesR);
  1382. return unicodesR;
  1383. // return sSource;
  1384. ///
  1385. }
  1386. /**
  1387.  * 将用javascript的escape()函数编码的字符串解码回来 throws Exception
  1388.  */
  1389. public  String unescape( String src ) 
  1390. {
  1391. if ( src == null ) return src;
  1392. if ( src.equals( "" ) ) return src;
  1393. int pos = src.indexOf( "%u" );
  1394. if ( pos < 0 ) return tmptrans( src );
  1395. String tmp = src.substring( 0, pos );
  1396. String result = tmptrans( tmp );
  1397. String rest = "";
  1398. if ( pos + 6 < src.length() )
  1399. {
  1400. tmp = src.substring( pos, pos + 6 );
  1401. rest = src.substring( pos + 6 );
  1402. }
  1403. else
  1404. {
  1405. tmp = src.substring( pos );
  1406. rest = "";
  1407. }
  1408. tmp = tmp.replace( '%', '\' );
  1409. result += unicode2String( tmp );
  1410. return result + unescape( rest );
  1411. }
  1412. public  String unicode2String( String theString )
  1413. {
  1414. char aChar;
  1415. int len = theString.length();
  1416. StringBuffer outBuffer = new StringBuffer( len );
  1417. for( int x=0; x<len; )
  1418. {
  1419. aChar = theString.charAt( x++ );
  1420. if ( aChar == '\' )
  1421. {
  1422. aChar = theString.charAt( x++ );
  1423. if ( aChar == 'u' )
  1424. {
  1425. // Read the xxxx
  1426. int value = 0;
  1427. for ( int i = 0; i < 4; i++ )
  1428. {
  1429. aChar = theString.charAt( x++ );
  1430. switch ( aChar )
  1431. {
  1432. case '0': case '1': case '2': case '3': case '4':
  1433. case '5': case '6': case '7': case '8': case '9':
  1434. value = ( value << 4 ) + aChar - '0';
  1435. break;
  1436. case 'a': case 'b': case 'c':
  1437. case 'd': case 'e': case 'f':
  1438. value = ( value << 4 ) + 10 + aChar - 'a';
  1439. break;
  1440. case 'A': case 'B': case 'C':
  1441. case 'D': case 'E': case 'F':
  1442. value = ( value << 4 ) + 10 + aChar - 'A';
  1443. break;
  1444. default:
  1445. throw new IllegalArgumentException( "Malformed \uxxxx encoding.");
  1446. }
  1447. }
  1448. //System.out.println(value);
  1449. outBuffer.append( (char)value );
  1450. }
  1451. }
  1452. else
  1453. outBuffer.append( aChar );
  1454. }
  1455. return outBuffer.toString();
  1456. }
  1457. /**
  1458. *escape字符转换 %20 ==>空
  1459. *@date 2003-12-01
  1460. **/
  1461. public  String tmptrans( String theString ){
  1462. char aChar;
  1463. int len=theString.length();
  1464. String s1="";
  1465. String s2="";
  1466. String s3="";
  1467. String sRet="";
  1468. for( int i=0; i<len; ){
  1469. s1=theString.substring(i,i+1);
  1470. if(s1.equals("%")){
  1471. s2=theString.substring(i,i+3);
  1472. //if(s2.equals("%5C")) s3="";
  1473. //if(s2.equals("%22")) s3='"';
  1474. if(s2.equals("%27")) s3="'";
  1475. if(s2.equals("%21")) s3="!";
  1476. if(s2.equals("%23")) s3="#";
  1477. if(s2.equals("%24")) s3="$";
  1478. if(s2.equals("%25")) s3="%";
  1479. if(s2.equals("%5E")) s3="^";
  1480. if(s2.equals("%26")) s3="&";
  1481. if(s2.equals("%28")) s3="(";
  1482. if(s2.equals("%29")) s3=")";
  1483. if(s2.equals("%3D")) s3="=";
  1484. if(s2.equals("%7B")) s3="{";
  1485. if(s2.equals("%7D")) s3="}";
  1486. if(s2.equals("%5B")) s3="[";
  1487. if(s2.equals("%5D")) s3="]";
  1488. if(s2.equals("%20")) s3=" ";
  1489. if(s2.equals("%2C")) s3=",";
  1490. if(s2.equals("%3F")) s3="?";
  1491. if(s2.equals("%7C")) s3="|";
  1492. if(s2.equals("%60")) s3="`";
  1493. if(s2.equals("%7E")) s3="~";
  1494. if(s2.equals("%0A")) s3=" ";
  1495. if(s2.equals("%0D")) s3=" ";
  1496. if(s2.equals("%09")) s3=" ";
  1497.  
  1498. sRet=sRet+s3;
  1499. i=i+3;
  1500. }else{
  1501. sRet=sRet+s1 ;
  1502. i=i+1;
  1503. }
  1504. }
  1505. return sRet;
  1506. }
  1507. }