I\'m using GWT(Google Web Toolkit) to make a website. I need to show a table to the user, and let the user download the contents of the table.
On the client side, h
If you know the path of the file, Code snippet is shown below.
button.addClickHandler(new ClickHandler() { @Overrid public void onClick(ClickEvent event) { Window.open(GWT.getHostPageBaseURL() + "/file.rar", "name", "enabled"); } });