Ignore:
Timestamp:
2015-12-26T23:41:54+01:00 (8 years ago)
Author:
simon04
Message:

see #12231 - HttpClient: add support to uncompress streams

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/Compression.java

    r8929 r9169  
    5050                ? ZIP
    5151                : NONE;
     52    }
     53
     54    /**
     55     * Determines the compression type based on the content type (MIME type).
     56     * @param contentType the content type
     57     * @return the compression type
     58     */
     59    public static Compression forContentType(String contentType) {
     60        switch (contentType) {
     61        case "application/zip":
     62            return ZIP;
     63        case "application/x-gzip":
     64            return GZIP;
     65        case "application/x-bzip2":
     66            return BZIP2;
     67        default:
     68            return NONE;
     69        }
    5270    }
    5371
Note: See TracChangeset for help on using the changeset viewer.