- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Java 中评估一个 XPath 表达式,它应该只返回一个 String
作为返回。
但是,我得到的只是一个空白值。
南昌
import javax.xml.xpath.*;
import java.io.*;
import org.xml.sax.*;
public class XPathBasic{
public static void main(String[] args){
XPathFactory factory;
XPath xPath;
XPathExpression xPathExpressionCompiled;
String xPathExpressionString;
File xmlFile;
InputSource inputSource;
try{
factory = XPathFactory.newInstance();
xPath = factory.newXPath();
xPathExpressionString = "/people/student[@scholarship='yes']/name";
xPathExpressionCompiled = xPath.compile(xPathExpressionString);
xmlFile = new File("helloWorld.xml");
inputSource = new InputSource(new FileInputStream(xmlFile));
String name = xPathExpressionCompiled.evaluate(inputSource);
if(name != null){
System.out.println("Name of the student is: " + name);
}else{
System.out.println("Error");
}
}catch(XPathExpressionException e){
System.out.println("There seems to be an error with your expression: " + e.getMessage());
}catch(IOException e){
}catch(Exception e){
}
}
}
<?xml version="1.0" encoding="UTF-8" ?>
<people xmlns="http://www.cmu.edu/ns/blank"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.cmu.edu/ns/blank student.xsd">
<student scholarship="yes">
<name>John</name>
<course>Computer Technology</course>
<semester>6</semester>
<scheme>E</scheme>
</student>
<student scholarship="no">
<name>Foo</name>
<course>Industrial Electronics</course>
<semester>6</semester>
<scheme>E</scheme>
</student>
</people>
Name of student is:
最佳答案
这是我们很多人都会犯的错误!
Xpath 对命名空间很敏感。您的 XML 文件包含命名空间元素,这些命名空间在 XPath 中是必需的。在 XML 文件中,您可以使用默认 namespace ,但不能在 XPath 中使用。
试试
"/people[namespace-uri()='http://www.cmu.edu/ns/blank']/student[namespace-uri()='http://www.cmu.edu/ns/blank' and @scholarship='yes']/name[namespace-uri()='http://www.cmu.edu/ns/blank']"
"/a:people/a:student[@scholarship='yes']/a:name"
关于java - 我的 XPath 表达式没有选择 Java 中的任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16530676/
我正在使用 Gunicorn 为 Django 应用程序提供服务,它工作正常,直到我将其超时时间从 30 秒更改为 900000 秒,我不得不这样做,因为我有一个用例需要上传和处理一个巨大的文件(过程
我有一个带有非常基本的管道的Jenkinsfile,它可以旋转docker容器: pipeline { agent { dockerfile { args '-u root' } } stag
在学习 MEAN 堆栈的过程中,我遇到了一个问题。每当我尝试使用 Passport 验证方法时,它都不会返回任何响应。我总是收到“localhost没有发送任何数据。ERR_EMPTY_RESPONS
在当今的大多数企业堆栈中,数据库是我们存储所有秘密的地方。它是安全屋,是待命室,也是用于存储可能非常私密或极具价值的物品的集散地。对于依赖它的数据库管理员、程序员和DevOps团队来说,保护它免受所
是否可以创建像图片上那样的边框?只需使用 css 边框属性。最终结果将是没 Angular 盒子。我不想添加额外的 html 元素。我只想为每个 li 元素添加 css 边框信息。 假设这是一个 ul
我是一名优秀的程序员,十分优秀!