如何kill一个App进程

Posted zero-27

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何kill一个App进程相关的知识,希望对你有一定的参考价值。

杀死自己的进程:

1.

android.os.Process.killProcess(android.os.Process.myPid());


2.
System.exit(0);

杀死别人的进程:


1.参数是目标应用的包名,需要权限,但这个方法有时杀不死进程,正确的说是进程被杀死后,又重新启动了,真正杀死进程我推选第二种方法


<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"/>

ActivityManager am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
am.killBackgroundProcesses("com.android.mms");

 

2.说起来也郁闷,公司开发刚好遇到这个问题,摸索了好久才找到如下解决方法,需要root权限

public void killApp2(Context context, String packageName) 
	String command = "am force-stop " + packageName + "\\n";
	sendShell(command);


public static String sendShell(String command) 
		Process proc = null;
		DataOutputStream os = null;
		BufferedReader in = null;
		InputStream error = null;
		InputStream input = null;
		try 
			Runtime runtime = Runtime.getRuntime();
			proc = runtime.exec("su\\n");
			String line = "";
			os = new DataOutputStream(proc.getOutputStream());
			os.write((command + "\\n").getBytes());
			os.writeBytes("exit\\n");
			os.flush();
			proc.waitFor();
			// 拿到输出流,开始读取
			input = proc.getInputStream();
			error = proc.getErrorStream();
			int length = input.available();
			int errorLength = error.available();
			if (length > 0 && errorLength == 0) 
				// 执行正确
				in = new BufferedReader(new InputStreamReader(input));
				StringBuffer stringBuffer = new StringBuffer();
				while ((line = in.readLine()) != null) 
					stringBuffer.append(line + "\\n");
					System.out.println("line:" + line);
				
				line = stringBuffer.toString();
			
			return line;
		 catch (Exception ex) 
			ex.printStackTrace();
		 finally 
			try 
				if (os != null) 
					os.close();
				
				if (in != null) 
					in.close();
				
				if (error != null) 
					error.close();
				
				if (input != null) 
					input.close();
				
				if (proc != null) 
					proc.destroy();
				
			 catch (IOException e) 
				e.printStackTrace();
			
		
		return null;
	



以上是关于如何kill一个App进程的主要内容,如果未能解决你的问题,请参考以下文章

2023-04-03 Linux中杀死进程kill和killall命令的区别,着重介绍killall

4-5 Linux 中断进程 --- kill (kill -2 实验)

如何kill掉进程

Linux 下如何结束指定进程

kill命令

linux kill命令