Topic: 那位大哥能给一个使用jsp提取数据库.然后生成xml.然后使用xsl显示的例子... |
Print this page |
1.那位大哥能给一个使用jsp提取数据库.然后生成xml.然后使用xsl显示的例子... | Copy to clipboard |
Posted by: mengzhihai Posted on: 2003-05-29 09:47 多谢了!!! |
2.Re:那位大哥能给一个使用jsp提取数据库.然后生成xml.然后使用xsl显示的例子... [Re: mengzhihai] | Copy to clipboard |
Posted by: lazk Posted on: 2003-05-30 16:10 我的理解,使用jsp提取数据库有一些问题,我作过一个项目,思路是这样 struts+ejb 在session bean中把类转换成xml文件,在action中加上xslt转换,类转换成xml使用castor,具体的代码如下: 定义javabean,存储数据 import java.io.*; import javax.xml.transform.TransformerFactory; import javax.xml.transform.Transformer; import javax.xml.transform.stream.StreamSource; import javax.xml.transform.stream.StreamResult; import javax.xml.transform.TransformerException; import javax.xml.transform.TransformerConfigurationException; public class KmData implements Serializable { private String kmCode; public void setKmcode(String kmcode){ this.kmCode = kmcode; } public String getKmcode(){ return this.kmCode; } } 在sessionbean中实例化该javabean,然后调用castor序列化成xml import org.exolab.castor.xml.*; KmData km=new KmData (); km=给javabean赋值 StringWriter out=new StringWriter(); Marshaller.marshal(data,out); //转化成string String sXml=out.toString(); //转换成html TransformerFactory tFactory = TransformerFactory.newInstance(); Transformer transformer = tFactory.newTransformer(new StreamSource(BaseFunc.getContextPath(request,response) + xslFile)); Properties p =transformer.getOutputProperties() ; p.setProperty(javax.xml.transform.OutputKeys.ENCODING,"GBK") ; transformer.setOutputProperties(p) ; StringReader read=new StringReader(sXml); transformer.transform(new StreamSource(read), new StreamResult(xmlout)); xmlout.tostring();得到html,然后输出 主要用到casotr,java xml |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |