Electron 项目中杀掉进程的不同方式

Electron 项目中杀掉进程的不同方式

随着现代应用程序功能的不断扩展,用户对应用程序的控制需求也在不断增加。在 Electron 项目中,能够灵活地管理和控制进程是提升用户体验的重要一环。

无论是关闭不必要的后台任务,还是在特定条件下终止某个进程,掌握多种杀掉进程的方法都是非常有用的技能。本文将详细介绍在 Electron 项目中使用不同

方法杀掉进程的技术。我们将从多个角度详细讲解每种方法,并提供详细的代码示例。

目标
  1. 使用 process.kill 方法杀掉进程。
  2. 使用 child_process.exec 执行 taskkill 命令杀掉进程。
  3. 使用 child_process.exec 执行 taskkill 命令通过窗口标题杀掉进程。
章节
  1. 设置项目环境
  2. 使用 process.kill 方法杀掉进程
  3. 使用 child_process.exec 执行 taskkill 命令杀掉进程
  4. 使用 child_process.exec 执行 taskkill 命令通过窗口标题杀掉进程
  5. 总结

1. 设置项目环境

首先,确保你已经安装了 Electron 和 child_process 模块。如果还没有安装,可以使用以下命令进行安装:

bash 复制代码
npm install electron --save-dev

2. 使用 process.kill 方法杀掉进程

process.kill 是 Node.js 提供的一个内置方法,用于向进程发送信号。这是最简单和直接的方式。

示例代码
javascript 复制代码
const { app, BrowserWindow } = require('electron');
const { spawn } = require('child_process');

let mainWindow;
let childProcess;

function createWindow() {
    mainWindow = new BrowserWindow({
        width: 800,
        height: 600,
        webPreferences: {
            nodeIntegration: true,
            contextIsolation: false,
        }
    });

    mainWindow.loadFile('index.html');
}

app.on('ready', async () => {
    await createWindow();

    // 启动子进程
    childProcess = spawn('notepad.exe'); // 示例:启动记事本
    global.pid = childProcess.pid;

    // 杀掉进程
    function killProcess() {
        if (childProcess) {
            process.kill(childProcess.pid, 'SIGTERM'); // 发送终止信号
            childProcess = null;
            global.pid = undefined;
            console.log('已结束可执行程序的执行');
        }
    }

    // 绑定按钮事件
    mainWindow.webContents.on('did-finish-load', () => {
        mainWindow.webContents.send('init-kill-button');
    });

    mainWindow.webContents.on('kill-process', () => {
        killProcess();
    });
});
前端代码
html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Electron Kill Process</title>
</head>
<body>
    <h1>Electron Kill Process Example</h1>
    <button id="kill-button">Kill Process</button>

    <script>
        const { ipcRenderer } = require('electron');

        document.getElementById('kill-button').addEventListener('click', () => {
            ipcRenderer.send('kill-process');
        });

        ipcRenderer.on('init-kill-button', () => {
            console.log('Kill button initialized');
        });
    </script>
</body>
</html>

3. 使用 child_process.exec 执行 taskkill 命令杀掉进程

child_process.exec 方法允许你执行系统命令并获取输出。

示例代码
javascript 复制代码
const { app, BrowserWindow } = require('electron');
const { exec } = require('child_process');

let mainWindow;
let childProcess;

function createWindow() {
    mainWindow = new BrowserWindow({
        width: 800,
        height: 600,
        webPreferences: {
            nodeIntegration: true,
            contextIsolation: false,
        }
    });

    mainWindow.loadFile('index.html');
}

app.on('ready', async () => {
    await createWindow();

    // 启动子进程
    childProcess = exec('notepad.exe'); // 示例:启动记事本
    global.pid = childProcess.pid;

    // 杀掉进程
    function killProcess() {
        if (global.pid) {
            const killCommand = `taskkill /PID ${global.pid} /F /T`;
            exec(killCommand, (error, stdout, stderr) => {
                if (error) {
                    console.log(`程序的执行在强制结束时发生错误: ${error.message}`);
                }
                if (stderr) {
                    console.log(`程序的执行在强制结束时发生错误: ${stderr}`);
                }
                console.log(`已结束可执行程序的执行`);
            });
            global.pid = undefined;
        }
    }

    // 绑定按钮事件
    mainWindow.webContents.on('did-finish-load', () => {
        mainWindow.webContents.send('init-kill-button');
    });

    mainWindow.webContents.on('kill-process', () => {
        killProcess();
    });
});

4. 使用 child_process.exec 执行 taskkill 命令通过窗口标题杀掉进程

有时你可能没有进程 ID,但知道窗口标题,可以通过窗口标题来杀掉进程。

示例代码
javascript 复制代码
const { app, BrowserWindow } = require('electron');
const { exec } = require('child_process');

let mainWindow;

function createWindow() {
    mainWindow = new BrowserWindow({
        width: 800,
        height: 600,
        webPreferences: {
            nodeIntegration: true,
            contextIsolation: false,
        }
    });

    mainWindow.loadFile('index.html');
}

app.on('ready', async () => {
    await createWindow();

    // 杀掉进程
    function killProcessByWindowTitle() {
        const killCommand = `taskkill /fi "windowtitle eq 记事本" /F /T`;
        exec(killCommand, (error, stdout, stderr) => {
            if (error) {
                console.log(`程序的执行在强制结束时发生错误: ${error.message}`);
            }
            if (stderr) {
                console.log(`程序的执行在强制结束时发生错误: ${stderr}`);
            }
            console.log(`已结束可执行程序的执行`);
        });
    }

    // 绑定按钮事件
    mainWindow.webContents.on('did-finish-load', () => {
        mainWindow.webContents.send('init-kill-button');
    });

    mainWindow.webContents.on('kill-process-by-title', () => {
        killProcessByWindowTitle();
    });
});
前端代码
html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Electron Kill Process</title>
</head>
<body>
    <h1>Electron Kill Process Example</h1>
    <button id="kill-button">Kill Process by PID</button>
    <button id="kill-by-title-button">Kill Process by Window Title</button>

    <script>
        const { ipcRenderer } = require('electron');

        document.getElementById('kill-button').addEventListener('click', () => {
            ipcRenderer.send('kill-process');
        });

        document.getElementById('kill-by-title-button').addEventListener('click', () => {
            ipcRenderer.send('kill-process-by-title');
        });

        ipcRenderer.on('init-kill-button', () => {
            console.log('Kill buttons initialized');
        });
    </script>
</body>
</html>

总结

本文介绍了在 Electron 项目中使用不同的方法来杀掉进程。具体方法包括:

  1. 使用 process.kill 方法杀掉进程:适用于已知进程 ID 的情况,操作简单且效率高。
  2. 使用 child_process.exec 执行 taskkill 命令杀掉进程:适用于已知进程 ID 的情况,提供了更多的灵活性和控制。
  3. 使用 child_process.exec 执行 taskkill 命令通过窗口标题杀掉进程:适用于已知窗口标题但不知道进程 ID 的情况,特别适用于某些特殊情况下的进程管理。
相关推荐
_处女座程序员的日常1 小时前
Rollup failed to resolve import “destr“ from ***/node_modules/pinia-plugin-pers
javascript·uni-app·vue
1024小神4 小时前
package.json中“type“: “module“是什么含义,es6和commonjs的区别以及require和import使用场景
前端·json·es6
阿征学IT4 小时前
vue 计算属性get set
前端·javascript·vue.js
Amo Xiang4 小时前
2024最新版JavaScript逆向爬虫教程-------基础篇之Chrome开发者工具学习
javascript·chrome·爬虫·js逆向
赵闪闪1685 小时前
使用纯HTML和CSS绘制圣诞树:打造网页中的冬日奇景
前端·css·html
KEEPMA6 小时前
python练习-Django web入门
前端·python·sqlite
川石课堂软件测试6 小时前
性能测试|JMeter接口与性能测试项目
javascript·数据库·python·jmeter·单元测试
编码小袁7 小时前
探索JavaScript的强大功能:从基础到高级应用
开发语言·javascript·ecmascript
我不当帕鲁谁当帕鲁7 小时前
arcgis for js实现FeatureLayer图层弹窗展示所有field字段方式二
前端·javascript·arcgis
a48224257 小时前
前端交互展示:裂缝与凹痕分割
前端·交互