为了账号安全,请及时绑定邮箱和手机立即绑定

MyEclipse提示The element type "name" must be terminated by the matching end-tag "</name>"

import java.io.IOException;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.SAXException;

import com.SAXA.HA;
import com.SAXbook.Book;
public class Sax {

	/**
	 * @param args 
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
				SAXParserFactory spf=SAXParserFactory.newInstance();
				try {
					SAXParser Sax=spf.newSAXParser();
					HA s=new HA();
				    Sax.parse("book.xml", s);(提示这句话出错)
					System.out.println("共有"+s.getBook().size()+"本书。");
				    for (Book b : s.getBook()) {
						System.out.println(b.getId());
						System.out.println(b.getName());
					    System.out.println(b.getAuthor());
						System.out.println(b.getYear());
						System.out.println(b.getPrice());
						
						System.out.println(b.getLanguage());
						System.out.println("----结束----");
					
					}
				} catch (ParserConfigurationException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				} catch (SAXException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
	}


正在回答

1 回答

你看一下你的xml中的</name>写错了

0 回复 有任何疑惑可以回复我~
#1

慕盖茨7610259 提问者

非常感谢!
2016-02-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

MyEclipse提示The element type "name" must be terminated by the matching end-tag "</name>"

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信