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

OA系统

开发平台:

Java

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