- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个从模式生成的 XPath 列表,我想在 Java 对象中按层次结构表示。基本上我想从 XPath 中分割每个“/”并将它们视为单独的对象,没有重复项。目前,我已将列表加载到具有包含子对象的 HashMap 的对象中。
我想做类似的事情,但使用 ArrayList 代替。这是因为我想生成一个没有 HashMap 键的 JSON 字符串。该消息将用于显示 TreeView (使用 jstree)。
输入:
Root/Customers/Customer/CompanyName
Root/Customers/Customer/ContactName
Root/Customers/Customer/ContactTitle
Root/Customers/Customer/Phone
Root/Customers/Customer/Fax
Root/Customers/Customer/FullAddress/Address
Root/Customers/Customer/FullAddress/City
Root/Customers/Customer/FullAddress/Region
Root/Customers/Customer/FullAddress/PostalCode
Root/Customers/Customer/FullAddress/Country
Root/Orders/Order/CustomerID
Root/Orders/Order/EmployeeID
Root/Orders/Order/OrderDate
Root/Orders/Order/RequiredDate
Root/Orders/Order/ShipInfo/ShipVia
Root/Orders/Order/ShipInfo/Freight
Root/Orders/Order/ShipInfo/ShipName
Root/Orders/Order/ShipInfo/ShipAddress
Root/Orders/Order/ShipInfo/ShipCity
Root/Orders/Order/ShipInfo/ShipRegion
Root/Orders/Order/ShipInfo/ShipPostalCode
Root/Orders/Order/ShipInfo/ShipCountry
这是我当前的输出:
{
"text": "Root",
"children": {
"Root": {
"text": "Root",
"children": {
"Orders": {
"text": "Orders",
"children": {
"Order": {
"text": "Order",
"children": {
"RequiredDate": {
"text": "RequiredDate"
},
"ShipInfo": {
"text": "ShipInfo",
"children": {
"ShipName": {
"text": "ShipName"
},
"ShipCity": {
"text": "ShipCity"
},
"ShipAddress": {
"text": "ShipAddress"
},
"ShipVia": {
"text": "ShipVia"
},
"ShipPostalCode": {
"text": "ShipPostalCode"
},
"ShipCountry": {
"text": "ShipCountry"
},
"Freight": {
"text": "Freight"
},
"ShipRegion": {
"text": "ShipRegion"
}
}
},
"CustomerID": {
"text": "CustomerID"
},
"EmployeeID": {
"text": "EmployeeID"
},
"OrderDate": {
"text": "OrderDate"
}
}
}
}
},
"Customers": {
"text": "Customers",
"children": {
"Customer": {
"text": "Customer",
"children": {
"CompanyName": {
"text": "CompanyName"
},
"FullAddress": {
"text": "FullAddress",
"children": {
"Address": {
"text": "Address"
},
"Region": {
"text": "Region"
},
"PostalCode": {
"text": "PostalCode"
},
"Country": {
"text": "Country"
},
"City": {
"text": "City"
}
}
},
"Phone": {
"text": "Phone"
},
"Fax": {
"text": "Fax"
},
"ContactName": {
"text": "ContactName"
},
"ContactTitle": {
"text": "ContactTitle"
}
}
}
}
}
}
}
}
}
这是我想要的输出:
"data": [{
"text": "Root",
"children": [{
"text": "Orders",
"children": [{
"text": "Order",
"children": [{
"text": "RequiredDate"
}, {
"text": "ShipInfo",
"children": [{
"text": "ShipName"
}, {
"text": "ShipCity"
}, {
"text": "ShipAddress"
}, {
"text": "ShipCity"
}, {
"text": "ShipRegion"
}, {
"text": "ShipPostcode"
}, {
"text": "ShipCountry"
}]
}
}]
}]
}]
}]
有人对实现这一目标的最佳方法有任何想法吗?感谢任何答案!
编辑:根据要求,这里是代码..
树模型
public class TreeNode {
String id;
String text;
HashMap<String, TreeNode> children;
public TreeNode(String text)
{
this.text = text;
}
@Override
public String toString() {
return "TreeModel [id=" + id + ", text=" + text + ", children="
+ children + "]";
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public HashMap<String, TreeNode> getChildren() {
return children;
}
public void setChildren(HashMap<String, TreeNode> children) {
this.children = children;
}
}
代码
File file = new File("xpaths.txt");
try {
BufferedReader br = new BufferedReader(new FileReader(file));
TreeNode root = new TreeNode("Root");
String currentLine;
try {
while((currentLine = br.readLine()) != null)
{
XpathUtils.processXPath(currentLine, root);
}
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(new Gson().toJson(root));
XpathUtils
public static void processXPath(String xpath, TreeNode parent)
{
String[] elements = xpath.split("/");
for(int i=0; i < elements.length; i ++)
{
parent = processElement(elements, parent, i);
}
}
private static TreeNode processElement(
String[] xpath,
TreeNode parent,
int position)
{
if(parent.getChildren() == null)
{
parent.setChildren(new HashMap<String, TreeNode>());
}
if(!parent.getChildren().containsKey(xpath[position]))
{
TreeNode element = new TreeNode(xpath[position]);
parent.getChildren().put(xpath[position], element);
return element;
} else {
return parent.getChildren().get(xpath[position]);
}
}
编辑:短暂休息后,我以新的视角回到了这个问题。看来这个问题很容易解决!基本上只是用 ArrayList 替换了 HashMap,并添加了一些额外的方法来检查 XPath 元素是否已添加。可能不是最有效的方法,因为它每次都循环数组,但它设法完成工作。
完成代码:
/**
* Processes an XPath by splitting each element and
* adding them into individual @TreeNode objects.
*
* @param xpath The XPath that is being processed
* @param parent The top level parent @TreeNode
*/
public static void processXPath(String xpath, TreeNode parent) {
String[] elements = xpath.split("/");
for (int i = 0; i < elements.length; i++) {
parent = processElement(elements, parent, i);
}
}
/**
* Add an element of an XPath array to a @TreeNode object
* firstly checking if the element already has a corresponding
* @TreeNode.
*
* @param xpath The Xpath that is being processed
* @param parent The parent TreeNode of the xpath element
* @param position The the element is in the xpath array
* @return
*/
private static TreeNode processElement(String[] xpath, TreeNode parent,
int position) {
if (parent.getChildren() == null) {
parent.setChildren(new ArrayList<TreeNode>());
}
if (doesNodeExist(xpath[position], parent.getChildren())) {
return getExistingNode(xpath[position], parent.getChildren());
} else {
TreeNode element = new TreeNode(xpath[position]);
parent.getChildren().add(element);
return element;
}
}
/**
* Loop through the parent nodes children and returns a @Boolean
* depicting if the node has already been added to the @ArrayList
*
* @param element The name of the element that is being processed
* @param children The list of children from the parent node
* @return
*/
private static boolean doesNodeExist(String element,
ArrayList<TreeNode> children) {
for (TreeNode node : children) {
if (node.getText().equals(element)) {
return true;
}
}
return false;
}
/**
* Loops through the parent nodes children and returns the
* @TreeNode object that was specified
*
* @param element
* @param children
* @return
*/
private static TreeNode getExistingNode(String element,
ArrayList<TreeNode> children) {
for (TreeNode node : children) {
if (node.getText().equals(element)) {
return node;
}
}
return null;
}
最佳答案
我将使用具有以下属性的 Node 对象创建一个简单的树:
String pathElement
boolean isComplete // true if this is a complete path for cases where you have a path a/b and and a path a/b/x a would have this set to false, but b and x will have it set to true
List<Node> children
关于java - 在 java 中表示 XPath 列表的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32164497/
编辑:为什么这被否决了?我真的不知道...顺便说一句 ../不起作用,因为我不想要 Table 的父级但实际上想要 ../td+1 我不知道这是否可能? 嗨,大家好。 我手头有一个相当复杂的问题..
我很难找到需要单击的输入(复选框)元素的 xpath。我正在尝试使用其他跨度元素来定位它。元素包含 Angular 属性,不知道这是否重要? 元素的结构如下: Company name
我正在尝试构建一个包含许多 XPath 作为参数的 DSL。我是 XPath 的新手,我需要一个 XPath 语法中从未使用过的字符,这样我就可以在脚本的一行中分隔 n 个 XPath。我的问题:哪些
使用xpath在父标签内找到特定标签: 输入样例:
我需要构造一个通用XPath来找到正确的节点,其中的标准是日期和时间。例如查找“ 5 May”,“ 12:17:44”的节点 XML具有日期和时间标签。 不方便地,日期标签仅在当天的第一次出现时填充。
我正在尝试获取xPath几个月内两个日期之间的差异。 几天之内我就没问题了(1127) days-from-duration(xs:date('2012-06-17')-xs:date('2009-0
我试图选择一个包含一段文本的元素,但是我不想选择包含该文本加上其他文本的元素。我通常会使用text()='abc def',但是这个特定元素在前后都包含空格。 这是一个示例片段:
亲爱的,您能帮我用这个XPATH吗?可以说我有以下HTML代码 text value1 value2 text 我需要构建一
我正在尝试提取带有排除项的 xpath,但无法执行此操作。 (//div[@class='row site country-names']/following-sibling::div)[1]/di
response.xpath('//*[@id="blah"]//text()') 假设我的html是 This is a simple text foo and this is after tag.
除了那些具有"//ul/li[not(@*)][count(*)=0]"父项的人以外,我需要全部接受。我已经尝试过,但是不幸的是它不起作用。 有谁知道,我该怎么处理? 提前致谢。 最佳答案 我认为您需
我使用XPath的问题是,每当我使用“子字符串”功能时,我只会得到一个匹配项,而我想全部获得它们。 另一个问题是,每当我使用“子字符串”和运算符的组合时它只是行不通(没有匹配项)。 例如:http:/
我正在尝试通过其位置和属性获取项目,但不知道如何做。 我要实现的是将这一点统一起来: Xpath("//h4/a[contains(@href,'#vuln_')]") 还有这个: Xpath
我有一个xpath如下: .//*[text()='Name:']/../child::select | .//*[text()='Name:']/../child::span 但是对我来说,它既不紧
我拼命试图在xpath中组合几个过滤器。假设我的数据如下所示: DELETE 1 This is my title my sh
我想在已经通过 xpath 设置的其他元素中使用 xpath 来指示元素的位置。 下面的一个已经通过 xpath 设置(我没有改变) //Base_Code
是否可以使用xpath直接在括号内抓取信息?还是以后再用正则表达式过滤? HTML如下所示: Product name (UN1QU3 C0D3) 使用以下Xpath表达式,我可以在此中获取所有内容:
我试图使用一个XPath表达式来选择一个节点,该节点的子节点与文档中的另一个节点匹配。 匹配将意味着该节点的所有属性都相同。因此,如果将一个节点与多个属性进行比较,则无法进行单独的属性比较。 作为示例
我想在 XPath 表达式中使用 Iverson 括号(即映射 true => 1,false => 0)。 示例:而不是书写 someNumber+(if(elem1/elem2[@attr='12
是否可以以类似方式选择节点? './tr[position() in (1, 3, 7)]' 我只找到以下解决方案: './tr[position() = 1 or position() = 3 or
我是一名优秀的程序员,十分优秀!