当前位置:  技术问答>java相关

请问谁用过castor和jdom?

    来源: 互联网  发布时间:2015-11-15

    本文导语:  用castor,具体步骤是怎样的? 我已生成了.xml文件 ,.xsd文件。还需要建立映射吗? 还有谁能具体说说jdom? | 问得太笼统,问问题要问详细的点上, 不是要别人具体地说,:) 代码: /**  * xe...

用castor,具体步骤是怎样的?
我已生成了.xml文件 ,.xsd文件。还需要建立映射吗?
还有谁能具体说说jdom?

|
问得太笼统,问问题要问详细的点上,
不是要别人具体地说,:)

代码:
/**
 * xerces version 1.3.0
 * xalan version 2.0.1
 * jdom version 1.0beta6
 * jdk version 1.2
 *
 * @author lulu
 * @copyright com.biaoqi 
 */

import java.io.*;
import javax.xml.transform.*;
import javax.xml.transform.stream.*;
import org.jdom.*;
import org.jdom.input.SAXBuilder;
import org.jdom.output.XMLOutputter;


public class Article 
{

/**
 * Read and parse an xml document from the file at xml/sample.xml.
 * This method corresponds to the code in Listing 7.
 * @return the JDOM document parsed from the file.
 */

public static Document readDocument() 
{
        try 
{
            SAXBuilder builder = new SAXBuilder();
            Document anotherDocument = builder.build(new File("xml/sample.xml"));
            return anotherDocument;
        } 
catch(JDOMException e) 
{
            e.printStackTrace();
        } 
catch(NullPointerException e) 
{
            e.printStackTrace();
        }
        return null;
    }

/**
 * This method creates a JDOM document with elements that represent the
 * properties of a car.
 * This method corresponds to Listing 2.
 * @return a JDOM Document that represents the properties of a car.
 */
 
public static Document createDocument() 
{
// Create the root element
        Element carElement = new Element("car");
// create the document
        Document myDocument = new Document(carElement);
// add an attribute to the root element
        carElement.setAttribute(new Attribute("ibs", "superibs"));

// add a comment
        carElement.addContent(new Comment("Description of a car"));

// add some child elements

/*
 * Note that this is the first approach to adding an element and
 * textual content.  The second approach is commented out.
 */

Element make = new Element("make");
        make.addContent("Toyota");
        carElement.addContent(make);
// carElement.addContent(new Element("make").addContent("Toyota"));

// add some more elements
        carElement.addContent(new Element("model").addContent("stupid"));
        carElement.addContent(new Element("year").addContent("1997"));
        carElement.addContent(new Element("color").addContent("green"));
        carElement.addContent(new Element("license").addContent("1ABC234").setAttribute("state", "CA"));

        return myDocument;
    }

/**
 * This method accesses a child element of the root element of the
 * document built in listing 2 with the createDocument method.
 * This method corresponds to Listing 3.
 * @param myDocument the JDOM document built from Listing 2
 */

public static void accessChildElement(Document myDocument) 
{
// some setup
        Element carElement = myDocument.getRootElement();

// Access a child element
        Element yearElement = carElement.getChild("year");

// show success or failure
        if(yearElement != null) 
{
            System.out.println("Here is the element we found: " +
                yearElement.getName() + ".  Its content: " +
                yearElement.getText() + "n");
        } else {
            System.out.println("Something is wrong.  We did not find a year Element");
        }
    }

/**
 * This method removes a child element from a document.  The document
 * should be of the format created in Listing 2.
 * This method corresponds to Listin 4.
 * @param myDocument the JDOM document built from Listing 2.
 */

public static void removeChildElement(Document myDocument) 
{
// some setup
        System.out.println("About to remove the year element.nThe current document:");
        outputDocument(myDocument);
        Element carElement = myDocument.getRootElement();

// remove a child Element
        boolean removed = carElement.removeChild("year");

// show success or failure
        if(removed) 
{
            System.out.println("Here is the modified document without year:");
            outputDocument(myDocument);
        } 
else 
{
            System.out.println("Something happened.  We were unable to remove the year element.");
        }
    }

/**
 * This method shows how to use XMLOutputter to output a JDOM document to
 * the stdout.
 * This method corresponds to Listing 5.
 * @param myDocument the JDOM document built from Listing 2.
 */

public static void outputDocument(Document myDocument) 
{
        try 
{
            XMLOutputter outputter = new XMLOutputter("  ", true);
            outputter.output(myDocument, System.out);
        } 
catch (java.io.IOException e) 
{
            e.printStackTrace();
        }
    }

|
castor什么问题?要例程吗?

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问:我知道路由器的telnet密码,但忘记了enable 密码,请问如何是好?
  • 请问那里有SYBASE的jbdb 2.0下载;jspsmartupload可以直接将文件上传到数据库,请问如何使用
  • 请问最新的reahat9.0是基于什么核心的?2.4?2.6?请问那里能下载?
  • 请问:请问哪里有关于linux基本操作命令讲解的资料下载,最好是幻灯片格式的.
  • 请问,我试图用#admintool&图形工具命令来安装sun workshop5.0,为什么进入的却是用户管理界面?请问具体该如何在solaris下安装应用软件
  • 请问在Redhat 9里,我从登录就是图形介面,请问如何在图形介面内进入命令行方式呢,谢谢
  • 请问玩过SOLARIS的高手门,在不正常关机后,就不能启动到windows公用桌面了,只能在命令提示模式下了,请问怎么解决这个问题啊?急~!~!
  • 请问:我在redhat下装了bochs-2.2.1-1.rpm,.装了后,想设置一下,但找不到bochsrc.fda.bxrc,请问这个文件在哪个曰录下啊。
  • 请问:在配置Qt时,很多文档都说在.profile,.login里加东西,但是我好像没有发现有这两个文件上,请问这些文件在哪个目录下啊
  • 请问:在GCC里的C程序里的变量的声明是不是只能在前面,而且相同类型的变量的声明只能放在一起?如果不是,请问怎么样可以解决这个问题.
  • 请问各位大虾,小弟今天开始学jsp了,这学期我们有java课,所以已经下载了jdk(好象是1.2),请问我的98环境怎么配置jsp环境呀?我的jdk可以运行.java程序,别的我就不知道了....谢谢!
  • 主机是WIN2000,我用的是LUNIX,请问是否可以共享上网? 如果可以请问如何设置? 500分答谢,龟儿食言!
  • 请问linux下GUI开发的问题!
  • 请问出现fstab文件丢失该怎么修复呀?
  • 请问这个方法如何调用?
  • 请问一个奇怪的问题!
  • 请问在网页中打开的新窗口,如何让其居中。
  • 请问我该学什么了
  • 请问安装zhcon,cxterm问题
  • 非常急! 请问daemontools 在red hat 9下的安装问题? 在线等待


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3