XHTMLDocument.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:3k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: XHTMLDocument.java,v 1.3 2000/04/18 13:13:38 wastl Exp $ */
  2. package net.wastl.webmail.ui.xml;
  3. import net.wastl.webmail.server.*;
  4. import org.w3c.dom.*;
  5. import org.xml.sax.SAXException;
  6. import org.apache.xalan.xslt.*;
  7. import java.io.*;
  8. /**
  9.  * XHTMLDocument.java
  10.  *
  11.  * Created: Mon Mar 27 16:05:52 2000
  12.  *
  13.  * Copyright (C) 2000 Sebastian Schaffert
  14.  * 
  15.  * This program is free software; you can redistribute it and/or
  16.  * modify it under the terms of the GNU General Public License
  17.  * as published by the Free Software Foundation; either version 2
  18.  * of the License, or (at your option) any later version.
  19.  * 
  20.  * This program is distributed in the hope that it will be useful,
  21.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23.  * GNU General Public License for more details.
  24.  * 
  25.  * You should have received a copy of the GNU General Public License
  26.  * along with this program; if not, write to the Free Software
  27.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  28.  */
  29. /**
  30.  * Constructs HTML-Documents using a Stylesheet and a XML Document.
  31.  *
  32.  * @author Sebastian Schaffert
  33.  * @version
  34.  */
  35. public class XHTMLDocument extends net.wastl.webmail.ui.html.HTMLDocument {
  36.     
  37.     public XHTMLDocument(Document xml, String xsl) {
  38. StringWriter writer = new StringWriter();
  39. long start_t=System.currentTimeMillis();
  40. try {
  41.     XSLTInputSource msg_xml=new XSLTInputSource((Node)xml);
  42.     XSLTInputSource msg_xsl=new XSLTInputSource(xsl);
  43.     XSLTResultTarget msg_result=new XSLTResultTarget(writer);
  44.     
  45.     XSLTProcessor processor=XSLTProcessorFactory.getProcessorUsingLiaisonName("org.apache.xalan.xpath.xdom.XercesLiaison");
  46.     processor.setDiagnosticsOutput(System.err);
  47.     processor.process(msg_xml,msg_xsl,msg_result);
  48. } catch(SAXException ex) {
  49.     System.err.println("Error transforming XML with "+xsl+" to XHTML.");
  50.     ex.printStackTrace();
  51.     WebMailServer.getStorage().log(Storage.LOG_INFO,"Error transforming XML with "+xsl+" to XHTML.");
  52. }
  53. long end_t=System.currentTimeMillis();
  54. //System.err.println("Transformation XML --> XHTML took "+(end_t-start_t)+" ms.");
  55. WebMailServer.getStorage().log(Storage.LOG_DEBUG,"Transformation XML --> XHTML took "+(end_t-start_t)+" ms.");
  56. content=writer.toString();
  57.     }
  58.     public XHTMLDocument(Document xml, StylesheetRoot stylesheet) {
  59. StringWriter writer = new StringWriter();
  60. long start_t=System.currentTimeMillis();
  61. try {
  62.     XSLTInputSource msg_xml=new XSLTInputSource((Node)xml);
  63.     XSLTResultTarget msg_result=new XSLTResultTarget(writer);
  64.     
  65.     stylesheet.process(msg_xml,msg_result);
  66. } catch(Exception ex) {
  67.     System.err.println("Error transforming XML to XHTML.");
  68.     ex.printStackTrace();
  69. }
  70. long end_t=System.currentTimeMillis();
  71. //System.err.println("Transformation (with precompiled stylesheet) XML --> XHTML took "+(end_t-start_t)+" ms.");
  72. WebMailServer.getStorage().log(Storage.LOG_DEBUG,"Transformation (with precompiled stylesheet) XML --> XHTML took "+(end_t-start_t)+" ms.");
  73. content=writer.toString();
  74.     }
  75.     public String toString() {
  76. return content;
  77.     }
  78.     public int length() {
  79. return content.length();
  80.     }
  81.     
  82. } // XHTMLDocument