• 大小: 6.90KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java 使用VO解析XML元素(提高篇-实例363).zip

资源截图

代码片段和文件信息

/**
 * @jdk版本:1.6
 * @编码时间:2010-3-20
 */
package com.mingrisoft.entity;

import java.io.Serializable;
import java.net.URL;

/**
 * @author bwm
 * 
 */
public class BookElement implements Serializable {

private String name;
private String publisher;
private String company;
private String author;
private String isbn;
private Double price;
private URL url;

public String getName() {
return this.name;
}

public void setName(String name) {
this.name = name;
}

public String getPublisher() {
return this.publisher;
}

public void setPublisher(String publisher) {
this.publisher = publisher;
}

public String getCompany() {
return this.company;
}

public void setCompany(String company) {
this.company = company;
}

public String getAuthor() {
return this.author;
}

public void setAuthor(String author) {
this.author = author;
}

public String getIsbn() {
return this.isbn;
}

public void setIsbn(

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         232  2010-12-17 09:48  .classpath
     文件         379  2010-12-17 16:10  .project
     文件         635  2010-12-17 14:43  .settings\org.eclipse.jdt.core.prefs
     文件        2550  2011-02-14 10:45  bin\com\mingrisoft\entity\BookElement.class
     文件        4268  2011-02-14 10:45  bin\com\mingrisoft\SAX_demo\BookElementSAXParsing.class
     文件        1785  2010-12-16 17:11  src\com\mingrisoft\entity\BookElement.java
     文件        3782  2010-12-17 16:52  src\com\mingrisoft\SAX_demo\BookElementSAXParsing.java
     文件        1030  2010-12-16 17:11  xmldemo\books.xml

评论

共有 条评论