How to open a command prompt and input different commands from a java program(如何打开命令提示符并从 java 程序中输入不同的命令)
问题描述
我需要打开一个命令提示符 &执行 ij.bat
,这将带我到另一个提示,我可以在其中发出命令以连接到 DB &后来不同的sql语句.我能够从像
I need to open a command prompt & execute ij.bat
, which will take me to another prompt, where I can give command to connect to DB & later different sql statements. I was able to execute ij.bat
from the java program like
进程进程 = Runtime.getRuntime().exec("D:\ij.bat");
但是如何通过java程序给出更多的命令呢?
But how to give the furthur set of commands through the java program?
推荐答案
不要尝试运行 ij.bat 并为其提供命令来运行和解析输出,只需让您的程序使用 ij 类及其 runScript 方法:http://db.apache.org/derby/docs/10.11/publishedapi/org/apache/derby/tools/ij.html#runScript-java.sql.Connection-java.io.InputStream-java.lang.String-java.io.OutputStream-java.lang.String-
Instead of trying to run ij.bat, and feed it commands to run and parse the output, just have your program use the ij class, and its runScript method: http://db.apache.org/derby/docs/10.11/publishedapi/org/apache/derby/tools/ij.html#runScript-java.sql.Connection-java.io.InputStream-java.lang.String-java.io.OutputStream-java.lang.String-
那么您不必生成一个单独的进程,而可以在您的程序本身中以纯 Java 的形式保存所有内容.
Then you don't have to spawn a separate process, but can just keep everything in pure Java in your program itself.
这篇关于如何打开命令提示符并从 java 程序中输入不同的命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何打开命令提示符并从 java 程序中输入不同的命令
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 获取数字的最后一位 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 转换 ldap 日期 2022-01-01