以文本方式查看主题 - 中文XML论坛 - 专业的XML技术讨论区 (http://bbs.xml.org.cn/index.asp) -- 『 DOM/SAX/XPath 』 (http://bbs.xml.org.cn/list.asp?boardid=11) ---- 紧急求救!十万火急!!!如何在DTD限制下产生xml文件? (http://bbs.xml.org.cn/dispbbs.asp?boardid=11&rootid=&id=13639) |
-- 作者:lernji -- 发布时间:1/15/2005 5:25:00 PM -- 紧急求救!十万火急!!!如何在DTD限制下产生xml文件? 我现在遇到这么一个问题,从数据库中读出数据,然后在一个已有的DTD文件的约束下将这些数据保存在一个XML文件中,请问各位大虾如何解决呢?十万火急!!!在线等!!!多谢了!,下面是我写的源代码,不知道为什么文中的DTD文件对结果不起作用,晕死了! import java.sql.*; import java.io.*; import org.jdom.*; import org.jdom.output.*; public class JDOMBuildXMLDoc { eeeRoot = new Element("employees_information"); DocT = new DocType("employees_information", "DTDTest.dtd"); try { eeeRoot = Doc.getRootElement(); eee1 = new Element("name"); eee1 = new Element("age"); eee1 = new Element("sex"); eee1 = new Element("address"); eee1 = new Element("tel"); eee1 = new Element("email"); XMLOutputter XMLOut = new XMLOutputter(); FileWriter writer = new FileWriter("myFile.xml"); public static void main(String[] args) { System.out.println("========================================"); |
W 3 C h i n a ( since 2003 ) 旗 下 站 点 苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》 |
2,402.344ms |