Skip to content

Instantly share code, notes, and snippets.

View 1uokun's full-sized avatar
🤙
always-online, part-time job contract me

罗坤 1uokun

🤙
always-online, part-time job contract me
View GitHub Profile
@1uokun
1uokun / RealPathUtil.java
Last active June 27, 2024 07:18 — forked from tatocaster/RealPathUtil.java
Real Path Utility class for Android, works for all API
public class RealPathUtil {
public static String getRealPath(Context context, Uri fileUri) {
String realPath;
// SDK < API11
if (Build.VERSION.SDK_INT < 11) {
realPath = RealPathUtil.getRealPathFromURI_BelowAPI11(context, fileUri);
}
// SDK >= 11 && SDK < 19
else if (Build.VERSION.SDK_INT < 19) {