Click here to Skip to main content
15,884,702 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Actually I am downloading a pdf file to be displayed on the page for which I am using a servlet that uses the URL to download the pdf file.

After download is complete the pdf file is displayed in the jsp.


But as the download takes some time I want to display some custom message in another jsp until the download is going on and after the download of pdf is complete I will show the pdf file.


Is there any method of doing it?

Please suggest me something...It will be a great help to me.
Posted

1 solution

Hi,


I suggest you to use observer and observable design patterns.
Your jsp page would be the Obsorvers.
Obervers should subsribe to the Observable objects to be fired when an defined event occurs.
Thread downloading the pdf File would be the Observable.
When the thread finish downloading it should fire it obervers so they could modify their display.

look at this article to have an idea about Observer design pattern :
Observer_pattern[^]


Best regards.
EL GAABEB.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900