protected static MediaFile download(String url) throws IOException
方法中
String ds = conn.getHeaderField("Content-disposition");
String fullName = ds.substring(ds.indexOf("filename=\"") + 10, ds.length() - 1);
多截掉了一个字符 导致后缀名丢失一位
protected static MediaFile download(String url) throws IOException
方法中
String ds = conn.getHeaderField("Content-disposition");
String fullName = ds.substring(ds.indexOf("filename=\"") + 10, ds.length() - 1);
多截掉了一个字符 导致后缀名丢失一位