从 python 编译 java
我正在编写一个脚本来从 python 中编译 .java 文件 但错误
import subprocess
def compile_java(java_file):
cmd = 'javac ' + java_file
proc = subprocess.Popen(cmd, shell=True)
compile_java("Test.java")
错误:
javac is not recognized as an internal or external command windows 7
我知道如何解决 Windows 上的 CMD 问题。但是对于python我该如何解决呢? 我的意思是:我如何设置路径?
I'm writing a script to compile a .java file from within python
But the error
import subprocess
def compile_java(java_file):
cmd = 'javac ' + java_file
proc = subprocess.Popen(cmd, shell=True)
compile_java("Test.java")
Error:
javac is not recognized as an internal or external command windows 7
I know how to fix the problem for CMD on windows. But how do I solve it for python?
What I mean is: how do i set the path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者
or
您还可以发送参数:
接收这些变量的 Java 代码如下所示:
You can also send arguments as well:
The Java code to receive these variables will look like: