中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現靜默安裝Android應用

發布時間:2020-11-24 15:25:11 來源:億速云 閱讀:168 作者:Leah 欄目:移動開發

這期內容當中小編將會給大家帶來有關如何實現靜默安裝Android應用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

1、root權限靜默安裝實現

實現實際使用的是su pm install -r filePath命令。

核心代碼如下:

protected static void excuteSuCMD() { 
   Process process = null; 
   OutputStream out = null; 
   InputStream in = null; 
   String currentTempFilePath = "/sdcard/QQ.apk"; 
   try { 
   // 請求root 
   process = Runtime.getRuntime().exec("su"); 
   out = process.getOutputStream(); 
   // 調用安裝 
   out.write(("pm install -r " + currentTempFilePath + "\n").getBytes()); 
   in = process.getInputStream(); 
   int len = 0; 
   byte[] bs = new byte[256]; 
   while (-1 != (len = in.read(bs))) { 
   String state = new String(bs, 0, len); 
   if (state.equals("Success\n")) { 
    //安裝成功后的操作 
     } 
    } 
   } catch (IOException e) { 
    e.printStackTrace(); 
   } catch (Exception e) { 
    e.printStackTrace(); 
   } finally { 
    try { 
     if (out != null) { 
      out.flush(); 
      out.close(); 
     } 
     if (in != null) { 
      in.close(); 
     } 
    } catch (IOException e) { 
     e.printStackTrace(); 
    } 
   } 
  } 

2、非root權限提示用戶安裝,代碼如下:

public static void openFile() { 
  // 核心是下面幾句代碼 
  if (!isHasfile()) { 
   downLoadFile(url); 
  } 
  Intent intent = new Intent(); 
  intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
  intent.setAction(android.content.Intent.ACTION_VIEW); 
  intent.setDataAndType( 
    Uri.fromFile(new File("/sdcard/update/updata.apk")), 
    "application/vnd.android.package-archive"); 
  mContext.startActivity(intent); 
 } 

上述就是小編為大家分享的如何實現靜默安裝Android應用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄯善县| 册亨县| 清原| 安化县| 新闻| 清镇市| 临澧县| 灵川县| 上虞市| 日土县| 广德县| 三河市| 广饶县| 时尚| 北安市| 隆子县| 富锦市| 双牌县| 合山市| 美姑县| 富平县| 青河县| 定南县| 扬中市| 海林市| 垦利县| 安达市| 新平| 龙陵县| 资阳市| 夹江县| 普格县| 汝州市| 太仆寺旗| 大石桥市| 兴化市| 越西县| 平邑县| 独山县| 治县。| 竹北市|