Notepad ++ 安装Nppexec失败问题及解决
Notepad++安装插件Nppexec后可直接编译运行java 源程序。介绍插件安装常见问题如下。
操作方法
- 01
问题一:It has not been possible to validate the integrity of 'NPPEXEC.dll' needed to install or update a plugin.Do you want to copy this file anyway(not recommded)? 解决:点击是,然后手动安装插件。 点击notepad++右上角?号,有一个获取插件,然后找到你要安装的插件。 右击notepad++快捷方式图标,属性,查找目标,打开notepad++软件主目录,打开Plugins目录,将下载到的插件文件解压到Plugins目录。
- 02
问题二:编译时会出现错误提示:CreateProcess() failed with error code 2 系统找不到指定的文件。 解决:点击Notepad++ 工具栏->插件->Nppexec->execute 在弹出的命令框中输入以下四行命令,保存并命名为"Java compile and complement" NPP_SAVE cd "$(CURRENT_DIRECTION)" C:\Program Files\Java\jdk1.8.0_74\bin\javac.exe "$(FILE_NAME)" C:\Program Files\Java\jdk1.8.0_74\bin\java.exe "$(NAME_PART)" 将该命令通过advanced option添加到宏。 后续编译运行程序时可直接点击Notepad++ 工具栏->宏->"Java compile and complement"