You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
package com.github.catvod.utils;
|
|
|
|
import android.content.Intent;
|
|
import android.net.Uri;
|
|
import android.os.Build;
|
|
import android.text.TextUtils;
|
|
|
|
import com.github.catvod.spider.Init;
|
|
|
|
import java.io.File;
|
|
import java.net.URLConnection;
|
|
import java.util.Enumeration;
|
|
import java.util.zip.ZipEntry;
|
|
import java.util.zip.ZipFile;
|
|
|
|
public class FileUtil {
|
|
|
|
public static void openFile(File file) {
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
|
intent.setDataAndType(getShareUri(file), FileUtil.getMimeType(file.getName()));
|
|
Init.context().startActivity(intent);
|
|
}
|
|
|
|
public static void unzip(File target, File path) {
|
|
try (ZipFile zip = new ZipFile(target.getAbsolutePath())) {
|
|
Enumeration<?> entries = zip.entries();
|
|
while (entries.hasMoreElements()) {
|
|
ZipEntry entry = (ZipEntry) entries.nextElement();
|
|
File out = new File(path, entry.getName());
|
|
if (entry.isDirectory()) out.mkdirs();
|
|
else Path.copy(zip.getInputStream(entry), out);
|
|
}
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
private static Uri getShareUri(File file) {
|
|
return Build.VERSION.SDK_INT < Build.VERSION_CODES.N ? Uri.fromFile(file) : FileProvider.getUriForFile(Init.context(), Init.context().getPackageName() + ".provider", file);
|
|
}
|
|
|
|
private static String getMimeType(String fileName) {
|
|
String mimeType = URLConnection.guessContentTypeFromName(fileName);
|
|
return TextUtils.isEmpty(mimeType) ? "*/*" : mimeType;
|
|
}
|
|
}
|
|
|