javac命令提示符参数

发布于 2024-08-23 17:36:47 字数 154 浏览 5 评论 0原文

我的机器上安装了java,我想编译这组源代码。但是当我打开命令提示符并输入javac时,命令提示符说这是一个未知参数。当我想用 ant 构建一些东西时,也发生了同样的事情(如果你想知道的话,我有 build.xml)并且发生了同样的事情。如何设置 javac 和 ant 命令在任何目录中使用?

I installed java on my machine and I wanted to compile this group of source code. But when I opened up the command prompt and typed in javac, the command prompt said it was an unknown parameter. The same thing happened when I wanted to build something with ant (I had the build.xml if you are wondering) and the same thing happened. How can I set the javac and ant command to be used in any directory?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

岁吢 2024-08-30 17:36:48

首先,您必须确保安装了JDK,而不仅仅是JRE

其次,这取决于您的操作系统:

  • Windows:您必须使用来访问环境变量我的电脑(管理->高级->此处的某些内容)
  • linux/osx:您必须使用export命令或使用.profile导出变量用户目录中的文件

然后您需要设置两件事:

  • 将 /jdk_1.6.../bin/ 添加到您的 PATH 变量
  • 设置 JAVA_HOME 到您的 java 安装根目录( /java_1.6..../ )(也许 java 本身不需要这个,但许多框架都使用它)

注意一点:在 OSX 上,也许 Linux 上也是如此必须用双冒号“:”而不是分号“;”来分割 PATH 变量中的路径

First of all you have to be sure you installed JDK and not only JRE

Secondly it depends on your operating system:

  • windows: you have to reach environment variables by using My Computer (manage->advanced->something here)
  • linux/osx: you have to export variables with export command or by using a .profile file in user directory

Then you need to set two things:

  • adding /jdk_1.6.../bin/ to your PATH variable
  • setting JAVA_HOME to your root of java installation ( /java_1.6..../ ) (maybe this is not required by java itself but many frameworks use it)

One note: on OSX, and maybe Linux too you have to split paths in PATH variable with double colon ':' instead that semicolon ';'

三生路 2024-08-30 17:36:48

将可执行文件所在的目录添加到 PATH 环境变量中。

Add the directory the executable is in to the PATH environment variable.

天冷不及心凉 2024-08-30 17:36:48

猜测您使用的是 Windows。右键单击我的电脑,然后单击管理。然后,在高级选项卡中,选择环境变量。在新窗口中的系统变量下,找到Path并将完整路径附加到二进制文件(javacant >) 最后,用分号分隔。

Guessing that you are using Windows. Right click My Computer and click Manage. Then, in the Advanced tab, select Environment Variables. In the new window, under System variables, find Path and append the full path to the binaries (javac and ant) at the end, separated by semicolons.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文