Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在我用 eclipse 编写的 shell 中启动一个程序?
由于某些原因,我不想使用 Eclipse 控制台,所以有可能吗?
绝对地。将您的程序导出到 jar 文件 (your-project.jar) 并通过调用以下命令运行所需类的 main 函数:
java -cp your-project.jar packagename.classname
您甚至可以通过以下方式将输出(stdout、stderr)重定向到文件:
java -cp your-project.jar packagename.classname > outputFile 2>&1