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

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