I have an already generated PDF on my server-side,I would like some help on showing the pdf when clicking a button on the client side.

How should I create the conextion with the server and client using the shared?

Thank you for your help.

有帮助吗?

解决方案

Create a servlet and call it from client side on clicking a button.

String servletName = GWT.getModuleBaseURL().replace("/" + GWT.getModuleName(), "")
                     + "pdf_download_servlet";
Window.open(servletName, "", "");

For a servlet code please have a look at need a servlet to download a file.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top