JNI 开发经典案例之——卸载APK 跳转到特定网页(一般为反馈页面)学习

假设你已经是JNI 老司机:
public class NativeUtils {
static {
System.loadLibrary(“native-lib”);
}
public static native void init();
}
2,c 代码部分
JNIEXPORT void JNICALL Java_com_org_gsc_shouhujnidemo_NativeUtils_init
(JNIEnv * env, jclass jclass1) {
//初始化log
//初始化log
LOGI(“init start…”);

//fork子进程,以执行轮询任务
pid_t pid = fork();
if (pid < 0) {
    //出错log
    LOGI("fork failed...");
} else if (pid == 0) {
    //子进程注册"/data/data/com.example.uninstallprompt"目录监听器
    int fileDescriptor = inotify_init();
    if (fileDescriptor < 0) {
        LOGI("inotify_init failed...");
        exit(1);
    }

    int watchDescriptor;
    watchDescriptor = inotify_add_watch(fileDescriptor,"/data/data/com.org.gsc.shouhujnidemo", IN_DELETE);
    LOGI("watchDescriptor=%d",watchDescriptor);
    if (watchDescriptor < 0) {
        LOGI("inotify_add_watch failed...");
        exit(1);
    }

    //分配缓存,以便读取event,缓存大小=一个struct inotify_event的大小,这样一次处理一个event
    void *p_buf = malloc(sizeof(struct inotify_event));
    if (p_buf == NULL) {
        LOGI("malloc failed...");
        exit(1);
    }
    //开始监听
    LOGI("start observer...");
    size_t readBytes = read(fileDescriptor, p_buf,sizeof(struct inotify_event));

    //read会阻塞进程,走到这里说明收到目录被删除的事件,注销监听器
    free(p_buf);
    inotify_rm_watch(fileDescriptor, IN_DELETE);

    //目录不存在log
    LOGI("uninstall");

    //执行命令am start -a android.intent.action.VIEW -d http://shouji.360.cn/web/uninstall/uninstall.html
    //execlp(
    //  "am", "am", "start", "-a", "android.intent.action.VIEW", "-d",
    //  "http://shouji.360.cn/web/uninstall/uninstall.html", (char *)NULL);
    //4.2以上的系统由于用户权限管理更严格,需要加上 --user 0
    execlp("am", "am", "start", "--user", "0", "-a",
           "android.intent.action.VIEW", "-d", "https://www.baidu.com",(char *) NULL);

} else {
    //父进程直接退出,使子进程被init进程领养,以避免子进程僵死
}

}
3.调用 sever 或者Act
NativeUtils.init();

  1. 列表内容
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

江南一舟110

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值