English 中文(简体)
我如何在共同提案中选择这一要素?
原标题:How do I select this element in JSOUP?
  • 时间:2012-05-22 04:45:04
  •  标签:
  • java
  • jsoup

这是超文本结构:

“enterography

Element link = doc.select("div.subtabs p").first();

这似乎并不可行。 我如何选择<代码>p?

最佳回答

带有“代用品”的四级编码事实上不是<代码>p要素的母体,而是<代码>p的相容性。 为了检索<代码>p,请首先参考“连续”的括号:

Element link = doc.select("div#content > p").first();

此外,你需要<条码>和>;符号,以表明你重新选择了一名成年子女。

父母和子女:直接由父母抚养的儿童,例如: div.content > p. 找到了什么内容;以及 身体和体格; * 发现身体上的直系儿童。

如果你今后与一个共同愿景和安全局的甄选人员坐下来,请查看。 JSOUP Optionalorynex cookbook , 其中有一些 n的实例和解释。

问题回答

<代码>div#content p。 它不是<代码>的儿童。

<<>p>/strong> ,正试图提取的标签不是div的孩子。 它是个兄弟。 括号为contentp。 你们想要的标签是其父母中的第一个p标签。 因此,使用的是doc.select(“div#content > p”);首先();

The # means id and > means RHS is a child to LHS. So the statement means get first paragraph which is child to div with id as content

Element link = doc.select("div.subtabs + p") It finds element immediately preceded by sibling

尝试:

Element link = doc.select("div.subtabs > p").first();




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签