我正在使用spring shell开发命令行界面应用程序,我在Windows机器上面临一个问题,在Linux机器上我可以使用!<OS Command>
执行操作系统命令,
但这不适用于Windows机器。 Spring shell说
Unable to execute command, The system can not find the specified command
。
请告诉我如何在Windows平台上运行的Spring shell中执行windows命令(日期,时间,路径等命令)
提前致谢。
答案 0 :(得分:1)
日期,时间,路径等是windows命令shell的内置命令。看起来这些内置命令在spring-shell中是不可用的,而spring-shell会查看在windows路径中作为文件存在的命令。
Windows可以使用非内置的calc(! calc
)命令。