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