使用AsyncHttpClient下载gif图片出现org.apache.http.client.HttpResponseException: Content-Type not allowed!错误
原因:制定文件下载类型时,没有指定gif类型
解决方法:
// 指定文件类型 String[] allowedContentTypes = new String[]{"image/png", "image/jpeg", "image/gif"};
使用AsyncHttpClient下载gif图片出现org.apache.http.client.HttpResponseException: Content-Type not allowed!错误
原因:制定文件下载类型时,没有指定gif类型
解决方法:
// 指定文件类型 String[] allowedContentTypes = new String[]{"image/png", "image/jpeg", "image/gif"};