Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export does not work if german umlaute are in filename #35

Open
GoogleCodeExporter opened this issue Nov 14, 2015 · 0 comments
Open

Export does not work if german umlaute are in filename #35

GoogleCodeExporter opened this issue Nov 14, 2015 · 0 comments

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?
1. create a button which onclicke does the export
2. set filename with äöü
3. download
4. http 404 ressource not found

What is the expected output? What do you see instead?
the download window to download the file

What version of the product are you using? On what operating system?
vaadin 7.1.9
table export 1.5.1.1

Please provide any additional information below.

src button:
        exportXLSButton.addClickListener(new ClickListener() {


            @Override
            public void buttonClick(com.vaadin.ui.Button.ClickEvent event)
            {
                ExcelExport excelExport = new ExcelExport(theTable, user.getDisplayName());
                excelExport.setExportFileName("sumary-Stephan-Grün"); //the ü is the problem
                excelExport.setExcelFormatOfProperty("count", "#");
                excelExport.setExcelFormatOfProperty("count1", "#");
                excelExport.setExcelFormatOfProperty("totalPrice", "#,##0.00 €");
                excelExport.setExcelFormatOfProperty("total", "#,##0.00 €");
                excelExport.excludeCollapsedColumns();
                excelExport.setReportTitle(user.getDisplayName());
                excelExport.export();

            }
        });

Original issue reported on code.google.com by [email protected] on 7 Apr 2014 at 8:22

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant