首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >NppExec无法编译Java

NppExec无法编译Java
EN

Stack Overflow用户
提问于 2018-11-29 04:38:13
回答 1查看 289关注 0票数 0

我试图让NPPexec编译我的java程序,但是插件不起作用。我试图将它定向到当前的文件,我放弃了它的工作能力,只让它转到我的代码文件夹,仍然保持正常。Javac似乎工作得很好,除了它没有针对当前文件。最后,每当它试图使用java命令运行程序时,它就会抓狂,表现得好像没有注册表项或其他任何东西一样。我的java工作是在普通命令提示符下找到的,所以我不知道该做什么。

输入:

代码语言:javascript
复制
 cd desktop
    cd code
    javac $(FILE_NAME.JAVA)
    java $(NAME)

输出:

代码语言:javascript
复制
 CD: desktop
    Current directory: C:\Program Files (x86)\Notepad++
    CD: code
    Current directory: C:\Program Files (x86)\Notepad++
    javac 
    Process started (PID=14076) >>>
    Usage: javac <options> <source files>
    where possible options include:
      -g                         Generate all debugging info
      -g:none                    Generate no debugging info
      -g:{lines,vars,source}     Generate only some debugging info
      -nowarn                    Generate no warnings
      -verbose                   Output messages about what the compiler is doing
      -deprecation               Output source locations where deprecated APIs are used
      -classpath <path>          Specify where to find user class files and annotation processors
      -cp <path>                 Specify where to find user class files and annotation processors
      -sourcepath <path>         Specify where to find input source files
      -bootclasspath <path>      Override location of bootstrap class files
      -extdirs <dirs>            Override location of installed extensions
      -endorseddirs <dirs>       Override location of endorsed standards path
      -proc:{none,only}          Control whether annotation processing and/or compilation is done.
      -processor <class1>[,<class2>,<class3>...] Names of the annotation processors to run; bypasses default discovery process
      -processorpath <path>      Specify where to find annotation processors
      -parameters                Generate metadata for reflection on method parameters
      -d <directory>             Specify where to place generated class files
      -s <directory>             Specify where to place generated source files
      -h <directory>             Specify where to place generated native header files
      -implicit:{none,class}     Specify whether or not to generate class files for implicitly referenced files
      -encoding <encoding>       Specify character encoding used by source files
      -source <release>          Provide source compatibility with specified release
      -target <release>          Generate class files for specific VM version
      -profile <profile>         Check that API used is available in the specified profile
      -version                   Version information
      -help                      Print a synopsis of standard options
      -Akey[=value]              Options to pass to annotation processors
      -X                         Print a synopsis of nonstandard options
      -J<flag>                   Pass <flag> directly to the runtime system
      -Werror                    Terminate compilation if warnings occur
      @<filename>                Read options and filenames from file

    <<< Process finished (PID=14076). (Exit code 2)
    java 
    Process started (PID=6964) >>>
    Error: Registry key 'Software\JavaSoft\Java Runtime Environment'\CurrentVersion'
    has value '1.8', but '1.7' is required.
    Error: could not find java.dll
    Error: Could not find Java SE Runtime Environment.
    <<< Process finished (PID=6964). (Exit code 2)
    ================ READY ===============

=

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-11-29 19:47:39

对于nppexec命令,请尝试如下:

代码语言:javascript
复制
cd "$(CURRENT_DIRECTORY)"
javac $(FILE_NAME)
java $(NAME_PART)

它每次都适用于我(前提是指向路径变量可执行文件的路径已经正确地添加到了中)。

但是,不确定您所得到的错误,但是如果上面的错误不能工作,可能会有所帮助。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/53531920

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档