Ignore:
Timestamp:
2012-03-15T13:59:12+01:00 (13 years ago)
Author:
donvip
Message:

opendata: Le Mans data support, continuation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/NetworkReader.java

    r28050 r28088  
    6969                String cdisp = this.activeConnection.getHeaderField("Content-disposition");
    7070                if (cdisp != null) {
    71                         Matcher m = Pattern.compile("attachment; filename=(.*)").matcher(cdisp);
     71                        Matcher m = Pattern.compile("attachment;.?filename=(.*)").matcher(cdisp);
    7272                        if (m.matches()) {
    7373                                filename = m.group(1);
     
    9797
    9898        private Class<? extends AbstractReader> findReaderByExtension(String filename) {
     99                filename = filename.replace("\"", "");
    99100        if (filename.endsWith("."+XLS_EXT)) {
    100101                return XlsReader.class;
Note: See TracChangeset for help on using the changeset viewer.