下载Web内容AsyncTask失败

时间:2019-06-09 08:27:07

标签: java android

我正在尝试记录下载内容,但是当我运行应用程序时,此错误显示E / Zygote:MountEmulatedStorage(),E / Zygote:v2,E / SELinux:[DEBUG] get_category:variable seinfo:默认敏感度:NULL,类别:NULL和E / art:setrlimit(RLIMIT_CORE)对于pid 2432失败:不允许的操作也导致日志返回失败,并且允许Internet权限。

for(int i=0;i<10;i++ ){
    for(int j=0;j<10;j++){
        int pixel = test.getPixel(i,j);
        int red = Color.red(pixel);
        int green = Color.green(pixel);
        int blue= Color.blue(pixel);
        String val ="("+red+","+green+","+blue+")";
        System.out.print(val);
    }
    System.out.println();
}

0 个答案:

没有答案