1. 程式人生 > >使用AsyncHttpClient下載圖片出現org.apache.http.client.HttpResponseException: Content-Type not allowed!

使用AsyncHttpClient下載圖片出現org.apache.http.client.HttpResponseException: Content-Type not allowed!

使用AsyncHttpClient下載gif圖片出現org.apache.http.client.HttpResponseException: Content-Type not allowed!錯誤

原因:制定檔案下載型別時,沒有指定gif型別

 解決方法:

// 指定檔案型別
String[] allowedContentTypes = new String[]{"image/png", "image/jpeg", "image/gif"};