当前位置: 技术问答>java相关
xml的问题
来源: 互联网 发布时间:2015-10-14
本文导语: 我想把从数据库中得到的数据写入到一个xml文件中,然后把这个xml文件传送到客户端,在jsp中用javascript提取当中的数据,请问我如何生成这个xml文件并把它传送到客户端?这个xml文件应该保存到什么地方? ...
我想把从数据库中得到的数据写入到一个xml文件中,然后把这个xml文件传送到客户端,在jsp中用javascript提取当中的数据,请问我如何生成这个xml文件并把它传送到客户端?这个xml文件应该保存到什么地方?
|
生成这个xml文件:可以自己写文件,也可以用Dom SAX
传送到客户端: 在HTML里面
文件应该保存到什么地方: 和你的图片,网页方在一起好了,只要能够用http协议找到九可以
传送到客户端: 在HTML里面
文件应该保存到什么地方: 和你的图片,网页方在一起好了,只要能够用http协议找到九可以
|
不必保存该文件,直接通过Response送出即可
写XML字串可使用ECS,也可使用StringBuffer
写XML字串可使用ECS,也可使用StringBuffer
|
c.Open "provider=sqloledb;data source=mydb;initial catalog=pubs;user id=sa;password="
rs.cursorlocation = adUseClient
rs.Open "select * from titles", c, adOpenStatic
' Save to the file in the XML format. Note that if you don't specify
' adPersistXML, a binary format (ADTG) will be used by default.
rs.Save "titles.sav", adPersistXML
rs.cursorlocation = adUseClient
rs.Open "select * from titles", c, adOpenStatic
' Save to the file in the XML format. Note that if you don't specify
' adPersistXML, a binary format (ADTG) will be used by default.
rs.Save "titles.sav", adPersistXML
|
保存在服务段
也可以保存在内存里面,用Response发出去
也可以保存在内存里面,用Response发出去