matias casal wrote:Hello, is it possible to take the html source code from a jsp with a function, or header ?
Thank you
.
Yes

..you can...Use
java HttpClient .
you just have to set URL, method type (Get or Post) and respective parameters. If your page set cookie then you have to set cookie value. using this class you can get the HTML page of any application in Stream and then convert it to text and use as per your requirement. If you have to get any specific data from the result page then you can also HTML parse the page using
HTMLEditorKit class.