I have FileResource
FileResource curResource = new FileResource(new File(basepath +
"/WEB-INF/docs/"+path+".pdf"));
and i want save this file from browser on the computer by click the button. How can i do this in Vaadin 7? Thanks
I try something like this:
ExternalResource resource = new ExternalResource(basepath +
"/WEB-INF/icons/"+"block_16.png");
Page.getCurrent().open(resource.getURL(),"Download",true);
but i have empty about:blank page and nothing happens...
I resolve my problem!
private String basepath = VaadinService.getCurrent()
.getBaseDirectory().getAbsolutePath();
private Button saveExcel = new Button();
Resource res = new FileResource(new File(basepath +
"/WEB-INF/docs/settings.xlsx"));
FileDownloader fd = new FileDownloader(res);
fd.extend(saveExcel);
It's so easy to download from server in Vaadin
The problem of this solution is that: The file name and file content must be known before you call the fd.extend.
If you want to build the file name and file content on demand, see the tutorial in Vaadin wiki page: Letting The User Download A File
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With