3

给定以下代码,在 Eclipse 下,我收到类型不匹配错误:

package xmlInterface;


import javax.swing.text.*;
import org.w3c.dom.*;
import org.w3c.dom.Document;

import gameManage.round;

import java.io.File;

import javax.lang.model.element.Element;

import javax.swing.text.Segment;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import com.sun.org.apache.bcel.internal.classfile.Method;







        public void writeToXml(round[] games) throws ParserConfigurationException
        {


                       int i;
                // build a doucument by the parser
                       DocumentBuilderFactory document = DocumentBuilderFactory.newInstance();
                       DocumentBuilder docBuilder = document.newDocumentBuilder();

                       Document doc = docBuilder.newDocument();
                       Element rootElement = doc.createElement("GameOut");
...
...
...
}

我在 Eclipse 中收到以下错误:

Type mismatch: cannot convert from org.w3c.dom.Element to javax.lang.model.element.Element

谁能解释一下我该如何解决这个问题?

谢谢杰森

4

1 回答 1

2

我想你弄错了进口。不是

import javax.lang.model.element.Element;

import org.w3c.dom.Element;

不要使用带 * 的 import

org.w3c.dom.*

否则您可能会遇到一些“隐藏”错误,因为您编码的最后一个“元素”导入 (javax.lang.model.element.Element) 将隐藏导入中包含的 org.w3c.dom.Element org.w3c.dom.* 行。

于 2012-05-09T11:30:01.480 回答