Pdf Converter v5.0版本的 MD5 值为:258149214e8277c73fa6b365aba312ef

以下内容为反编译后的 a.java 源代码,内容仅作参考


package gc;

import android.net.Uri;
import androidx.activity.result.d;
import java.io.File;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
public final class a {
    public final Uri f18702a;
    public final Integer f18703b;
    public boolean f18704c;

    public a(int i10) {
        this.f18702a = null;
        this.f18703b = Integer.valueOf(i10);
        this.f18704c = true;
    }

    public a(Uri uri) {
        String uri2 = uri.toString();
        if (uri2.startsWith("file:///") && !new File(uri2.substring(7)).exists()) {
            try {
                uri = Uri.parse(URLDecoder.decode(uri2, "UTF-8"));
            } catch (UnsupportedEncodingException unused) {
            }
        }
        this.f18702a = uri;
        this.f18703b = null;
        this.f18704c = true;
    }

    public static a a(String str) {
        if (str != null) {
            if (!str.contains("://")) {
                if (str.startsWith("/")) {
                    str = str.substring(1);
                }
                str = d.a("file:///", str);
            }
            return new a(Uri.parse(str));
        }
        throw new NullPointerException("Uri must not be null");
    }
}