Как я могу искать пользовательский стартовый тег, используя jericho в Java?

StackOverflow https://stackoverflow.com/questions/3537355

  •  30-09-2019
  •  | 
  •  

Вопрос

Как гласит название, я пытаюсь сопоставить нестандартный starttagtype в форме <foo:bar ...>

Как бы я сделал это с jericho?

Редактировать:

Я создал следующие пользовательские starttagtype:

PrimoResultStartTagType primoSTT = new PrimoResultStartTagType("search", "<sear:DOC", ">", EndTagType.NORMAL, false, true, true);

...а также:

class PrimoResultStartTagType extends StartTagType {

    protected PrimoResultStartTagType(String arg0, String arg1, String arg2, EndTagType arg3, boolean arg4, boolean arg5, boolean arg6) {
        super(arg0, arg1, arg2, arg3, arg4, arg5, arg6);
    }

    @Override
    protected Tag constructTagAt(Source arg0, int arg1) {
        return null;
    }

}

Тем не менее, когда я делаю source.getAllElements(...), Я не получаю матчей.

Это было полезно?

Решение

Может быть, это поможет:

Пример html:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>StartTagType (Jericho HTML Parser 3.1)</title>
</head>

<body>

<span>simple tag</span>

<test:name>custom tag</test:name>

</body>

</html>

И образец кода:

public class Main {

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

    URL url = Main.class.getClassLoader().getResource("test.html");
    Source source = new Source(url);
    List<Element> elementList = source.getAllElements("test:name");
    for (Element element : elementList) {
        System.out.println("Custom tag content: " + element.getContent().toString());
    }
}

}

Выход:

Custom tag content: custom tag
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top