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

错在哪里?(getAttribute)

    来源: 互联网  发布时间:2015-09-10

    本文导语:  我的代码: import org.jdom.*; import org.jdom.output.*; import org.jdom.input.*; import java.io.*; public class TestNetwork{ public static void main(String args[])throws Exception{ SAXBuilder sb = new SAXBuilder(); Document doc = sb.build(new FileI...

我的代码:
import org.jdom.*;

import org.jdom.output.*;

import org.jdom.input.*;

import java.io.*;

public class TestNetwork{

public static void main(String args[])throws Exception{

SAXBuilder sb = new SAXBuilder();


Document doc = sb.build(new FileInputStream("network.xml"));

//加入一条处理指令

ProcessingInstruction pi = new ProcessingInstruction

("xml-stylesheet","href="/tech-qa-java/bookList.html.xsl" type="text/xsl"");

doc.addContent(pi);

Element root = doc.getRootElement(); //得到根元素

java.util.List list1 = root.getChildren(); //得到根元素所有子元素的集合

Element Subnet0 = (Element)list1.get(0); //得到第一个元素

String gateway1=Subnet0.getAttribute("gateway");

System.out.println("gateway1:"+gateway1);

}

}

编译时出现:
incompatible types
found: org.jdom.Attribute
required:java.lang.String

network.xml:


  

问:错在哪里?






|
String gateway1=Subnet0.getAttribute("gateway").toString();

|
你把这句话改成这样看看:
String gateway1=(String)Subnet0.getAttribute("gateway");

|
UP

    
 
 

您可能感兴趣的文章:

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












  • 相关文章推荐
  • java命名空间java.text接口attributedcharacteriterator的类成员方法: getattributes定义及介绍
  • JSP中request的getAttribute,setAttribute方法和session的getAttribute,setAttribute方法有什么不同吗?
  • java命名空间javax.print接口docprintjob的类成员方法: getattributes定义及介绍
  • session.getAttribute("id")对象怎么变成String类型?
  • java命名空间javax.swing.text接口element的类成员方法: getattributes定义及介绍
  • 请问,getAttribute 怎么用?在线等待
  • java命名空间javax.swing.text类abstractdocument.abstractelement的类成员方法: getattributes定义及介绍
  • 怎么在JSP中把session.getAttribute("参数")赋值给一个变量。
  • java命名空间javax.swing.text.html类paragraphview的类成员方法: getattributes定义及介绍
  • 有关session中的getAttribute(java.lang.String name)的问题???
  • java命名空间javax.swing.text类simpleattributeset的类成员方法: getattribute定义及介绍
  • 比较菜鸟的问题session.getValue("XX")和session.getAttribute("XX")有什么区别吗
  • java命名空间javax.swing.text.html类imageview的类成员方法: getattributes定义及介绍
  • 看看这个问题???为什么getServletContext().getAttribute报错,在线等待!
  • java命名空间javax.swing.text.html类inlineview的类成员方法: getattributes定义及介绍
  • session.getValue()和session.getAttribute()有什么区别?
  • java命名空间javax.swing.text.html类blockview的类成员方法: getattributes定义及介绍
  • 基于request.getAttribute与request.getParameter的区别详解
  • java命名空间javax.imageio.metadata类iiometadatanode的类成员方法: getattributes定义及介绍
  • getParameter和getAttribute的区别是什么?
  • java命名空间javax.swing.text类stylecontext.smallattributeset的类成员方法: getattribute定义及介绍


  • 站内导航:


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

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

    浙ICP备11055608号-3