Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下代码尝试从 Windows 任务管理器中检索信息:
Runtime.getRuntime().exec("tasklist /v /fi");
当我在 Windows CMD 中输入“tasklist /v /fi”时它可以工作,但在 java 中它给了我找不到文件路径的错误。
使用字符串数组运行具有多个选项的命令。
Runtime.getRuntime().exec(new String[]{"tasklist","/v","/fi"});