在eclipse中写了如下代码:
public class JAXPSample{
     private string filename = “books。xml”;
     private Document doc = null;
  
   public static void main (String【】 args){
          
      JAXPSample application = new JAXPSample();   }}
提示说:Document cannot be resolved to a type。
本人初学者,希望知道的能够指点一二。谢谢!!!

解决方案 »

  1.   

    这你没在java文件的最前面 import 这个Document类吧
      

  2.   

    的确是没有。
    但是我还是不知道怎么样添加是对的。import javax.swing.text.Document  和  import org.w3c.dom.Document  好像都是错的。
      

  3.   

    要根据你所准备使用的XML解析工具来定,这两种既有可能是对的,也有可能是错的。网上Google点相对完整的代码吧,就不用自己纠结了。