Java 1.6.0_20 中的 Eclipse Node.getTextContent()
Posted
技术标签:
【中文标题】Java 1.6.0_20 中的 Eclipse Node.getTextContent()【英文标题】:Eclipse Node.getTextContent() in Java 1.6.0_20 【发布时间】:2011-10-12 02:52:21 【问题描述】:我遇到了 org.w3c.dom 的 Node.getTextContent() 的问题。我有以下代码块:
String name = document.getElementsByTagName("name").item(0).getTextContent();
还有 eclipse 给了我The method getTextContent() is undefined for the type Node
。什么问题我不明白。
感谢和问候。
编辑:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>FBApp</groupId>
<artifactId>FBApp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<repositories>
<repository>
<id>java.net.maven1</id>
<name>java.net</name>
<url>http://download.java.net/maven/1</url>
</repository>
<repository>
<id>maven2-repository.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>1.2</version>
<type>jar</type>
<classifier>NIGHTLY_20060227</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.7.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-bean-collections</artifactId>
<version>1.7.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
<version>1.7.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>1.7</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-el</groupId>
<artifactId>commons-el</artifactId>
<version>1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>1.1.4</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>oro</groupId>
<artifactId>oro</artifactId>
<version>2.0.8</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.facebookapi</groupId>
<artifactId>facebook-java-api</artifactId>
<version>3.0.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.facebookapi</groupId>
<artifactId>facebook-java-api-annotation-processor</artifactId>
<version>3.0.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.facebookapi</groupId>
<artifactId>facebook-java-api-schema</artifactId>
<version>3.0.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.4.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl104-over-slf4j</artifactId>
<version>1.4.2</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
这是 pom.xml,commons-digester 需要包含 org.w3c.dom 的 xml-apis-1.0b2。我认为这是一个依赖问题。
【问题讨论】:
【参考方案1】:您需要在 Eclipse 中转到项目的属性。然后选择“Java Build Path”并选择“Order and Export”选项卡。在这里你可以安排依赖的顺序。确保您的 JRE 高于 Maven 依赖项。
【讨论】:
这可能是 Eclipse 和 Maven 制造的许多事情的解决方案。非常感谢。 这对我来说是一种快速修复,尽管 getNodeValue() 解决方案可能更好。 完美。为我工作 优秀。也为我工作。 感谢您与我们分享。优秀的答案。 100% 工作。给你加一。【参考方案2】:尝试使用:
document.getElementsByTagName("name").item(0).getFirstChild().getNodeValue();
AFAIK 在某些情况下,它比getTextContent()
“更安全”。
【讨论】:
这不是真的有同样的效果。 getTextContent(),根据 api 文档,返回这个......每个子节点的 textContent 属性值的串联,不包括 COMMENT_NODE 和 PROCESSING_INSTRUCTION_NODE 节点。如果节点没有子节点,则这是空字符串。【参考方案3】:我知道那是一篇较旧的帖子,但对于遇到此问题的任何人,我都遇到了类似的问题,并使用以下步骤修复了它:
http://mergetag.com/the-method-gettextcontent-is-undefined-for-the-type-node/
即org.w3c.dom.Node.getTextContent() is only available as of Java 1.5
,但还要注意Node
的声明。 xml-apis-1.0.b2.jar
是有问题的。进入项目 Properties > Java Build Path > Order and Export 选项卡,然后将 xml-apis-1.0.b2.jar
移动到顶部。
【讨论】:
考虑编写解决方案,因为链接/帖子可能会失效。 Paco:感谢您提供如此出色的解决方案。继续加油:)以上是关于Java 1.6.0_20 中的 Eclipse Node.getTextContent()的主要内容,如果未能解决你的问题,请参考以下文章
使用 java 版本 1.6.0_37 的 Centos 中的 APNS NetworkIOException SSLHandshake 失败