I have a problem with using a parser in Java. I would like to do get informations from a website. The problem is that the parser is not downloading what is inside some . In the source code (when I open through a web browser) I can see what is inside , but in a parser I can’t.
Example: In a web browser:
<div>something lalala</div>
In a parser:
<div></div>
What is wrong? How can I use parser to get the source of <div>
?
I tried JSoup and Jaunt, but the problem is the same.
How to solve the problem?
Thanks in advance :)