码迷,mamicode.com
首页 > 移动开发 > 详细

android 后台截屏核心代码

时间:2015-01-27 13:38:53      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:

RootCommand("su -c ‘screencap /mnt/sdcard/screenaaa.png‘ && adb pull /sdcard/screenaaa.png") ;

/**
	 * 应用程序运行命令获取 Root权限,设备必须已破解(获得ROOT权限)
	 * 
	 * @param command
	 *            命令:String apkRoot="chmod 777 "+getPackageCodePath();
	 *            RootCommand(apkRoot);
	 * @return 应用程序是/否获取Root权限
	 */
	private boolean RootCommand(String command) {
		Process process = null;
		DataOutputStream os = null;
		try {
			process = Runtime.getRuntime().exec("su");
			os = new DataOutputStream(process.getOutputStream());
			os.writeBytes(command + "\n");
			os.writeBytes("exit\n");
			os.flush();
			process.waitFor();
		} catch (Exception e) {
			Log.d("*** DEBUG ***", "ROOT REE" + e.getMessage());
			return false;
		} finally {
			try {
				if (os != null) {
					os.close();
				}
				process.destroy();
			} catch (Exception e) {
			}
		}
		Log.d("*** DEBUG ***", "Root SUC ");
		return true;
	}




android 后台截屏核心代码

标签:

原文地址:http://my.oschina.net/lhjtianji/blog/372157

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!