Jython命令终止批处理脚本

时间:2015-03-06 17:32:09

标签: python cmd jython

在一个目录中我有三个文件。

  • test.py ,包含print "Hello World"
  • python_runner.bat ,包含
    • python test.py PAUSE
  • jython_runner.bat ,包含
    • jython test.py PAUSE

python_runner.bat按预期工作,但运行Jython_runner.bat会导致跳过PAUSE命令!

为什么Jython会导致批处理脚本过早终止?

(注意:我使用的是Jython2.7b4,我没有尝试使用Jython 2.5)

1 个答案:

答案 0 :(得分:1)

如果jython命令是批处理脚本,那么暂停和之后的任何事情都不会被执行。

尝试call

call jython test.py 

结果如何?