我有一个简单的类(用于测试目的),我试图使用JXPath进行查询。
我创建了各种动物对象的列表,我希望得到一个迭代器:
所有类型='CAT'的动物
所有动物,其中numLegs = 4
这是一个简单的类:
public class Animal {
private UUID uuid;
private int numLegs;
private AnimalType type;
public enum AnimalType {
CHICKEN, FROG, DOG, CAT
}
public Animal(AnimalType type) {
this.type = type;
uuid = UUID.randomUUID();
switch (type) {
case CHICKEN:
numLegs = 2;
break;
case FROG:
numLegs = 2;
break;
case DOG:
numLegs = 4;
break;
case CAT:
numLegs = 4;
break;
}
}
public UUID getUuid() {
return uuid;
}
public int getNumLegs() {
return numLegs;
}
public AnimalType getType() {
return type;
}
public String toString(){
return "UUID: "+uuid+", Animal: "+type+ ", Legs: "+numLegs;
}
}
以下是我用来构建动物列表以供我查询的方法:
private static List<Animal> getAnimals(int numAnimals) {
ArrayList<Animal> animals = new ArrayList<Animal>();
for(int i = 0; i<numAnimals; i++){
if(i%4==0){
animals.add(new Animal(AnimalType.CAT));
}
else if(i%3==0){
animals.add(new Animal(AnimalType.DOG));
}
else if(i%2==0){
animals.add(new Animal(AnimalType.FROG));
}
else{
animals.add(new Animal(AnimalType.CHICKEN));
}
}
return animals;
}
以下是我尝试执行查询的方法:
public static void main(String[] args){
List<Animal> animals = getAnimals(10000);
JXPathContext animsContext = JXPathContext.newContext(animals);
Iterator<BeanPointer> iter =
animsContext.iteratePointers("/*[type='CAT']");
List<Animal> cats = new ArrayList<Animal>();
while(iter.hasNext()){
cats.add((Animal) iter.next().getParent().getValue());
}
System.out.println("Number of Cats is: "+cats.size());
}
这部分:
Iterator<BeanPointer> iter =
animsContext.iteratePointers("/*[type='CAT']");
无效。我究竟做错了什么?我无法让它为/ * [numLegs = 4]工作。
答案 0 :(得分:5)
我从未使用过JXPath,但我希望有一个根节点,在这种情况下
/*[type='CAT']
意味着“给我根节点,只有它具有类型等于CAT的属性”
我认为你所追求的更像是
/*/*[type='CAT']
其读取方式如“直接在根节点下面提供节点,其属性类型等于CAT”
Brian的建议
//*[type='CAT']
读起来像“给我树中属性类型等于CAT的所有节点”
希望有所帮助。
答案 1 :(得分:2)
我不确定上面有什么不起作用。不过有几点。
getType()
将返回枚举而不是字符串的类型。我不确定JXPath是不是很聪明。枚举。[type='CAT']
本身不是XPath表达式。我期待像//*[type='CAT']
所以我会尝试以下方法:
//*
的XPath(没有任何谓词)来确认JXpath将按预期查询ArrayList。