Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

A jsp page in which dynamic datas are there.

I want to get the html of the jsp page which is shown in the browser , from the servlet.

I want to store the html of the jsp in a String variable.

is it possible to get the html source of the jsp file from a servlet. If yes . How?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Use commons http client, which helps in making GET or POST requests from java application.

You can pass all the data required like authentication params or.. session id's etc.

As per your requirement you can get content of completely rendered HTML source using the same.

Much more details can be found here along with good examples

http://hc.apache.org/httpclient-3.x/userguide.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...