HTML Parser is a Java HTML parsing library. It features filters, visitors, custom tags and easy to use JavaBeans.
Questions tagged [html-parser]
211 questions
0
votes
2 answers
Beautiful Soup Extracting Data After href (not url)
I am new to using BeautifulSoup and am try to use it to grab some test data from NHL.com.
Here is my code so far but I am pretty lost...
Here is a snippet of the HTML code I want to extract data from:
…
…

billatron
- 45
- 10
0
votes
1 answer
trying to get content of html file which is located inside the tar file
i am trying to get a html file which is one of the file located inside the tar file and i have something in mind i don't know its correct or not ?? please point me if i am wrong. My idea is-
i creating a stream from tar file in and storing that…

Sss
- 1,519
- 8
- 37
- 67
0
votes
2 answers
How to fetch and parse all existing pages based on site pager?
Could somebody provide code or examples regarding the subject?
Example HTML:
...
1
2

Alexander Vasilenko
- 706
- 1
- 11
- 24
0
votes
1 answer
Python: Get data between html tags if an attribute matches and put it into a list
this is part of a html file.
......
......
Adam
450231

user1658248
- 25
- 4
0
votes
2 answers
Jsoup: How to get Video url?
I am trying to parse video url from html. I am using Jsoup parse to parse it. I want to parse
from this…

Dhasneem
- 4,037
- 4
- 33
- 47
0
votes
1 answer
can I use jsoup to do screen scraping
I am new to Jsoup I am suppose to do a screen scraping to obtain a hierarchy of links. I am able to get the links from the first page but I need to know how I can go deeper and get the link of each link. This is what i have so far. It prints out all…

Gio
- 349
- 6
- 20
0
votes
1 answer
How to parse img tag and ul tag in java using htmlparser?
I want to parse following with htmlparser.I wrote code for title and its working fine.i tried for following tag but nothing is working.please help i am doing this kind of programmming for the first time.
1)
I want to retrieve img src url from img…

Anish
- 1
- 3
0
votes
0 answers