- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在努力奔跑
C:\Users\Luis\Desktop\RESEARCHGUIPROJECT\ResearchGUI\CHEMKED\CHEMKED_SOLVER.exe
使用 java 或让 java 使用命令提示符运行此可执行文件。现在我相信我能够将 java 获取到该文件但是当它运行它时可执行文件给我 ERR IO-21 invalid STATUS specifier for给定文件。
我已经从 DOS 窗口运行了可执行文件,通常当给出该代码时,这意味着输入文件指定不正确。要了解求解器的背景,请从名为 solverfilepath.txt 的文件中读取,并在该文件中为该文件所在的位置指定一个文件目录。此文件是名为 SOLTMP.txt 的求解器输入。
此错误仅在我运行 java 时出现,但在我从命令窗口手动运行时不会出现。
我不知道是否有办法在 java 运行此程序时也让它打开命令窗口以查看在命令提示符中运行的可执行文件。
有什么建议吗?
int i = 1;
while(finalTime < 1.0000){
try{
// Execute CHEMKED solver
// Added 07/06/2013 from StackOverFlow
Runtime rt = Runtime.getRuntime();
String[] CHEMKED = {"C:\\Users\\Luis\\Desktop\\RESEARCHGUIPROJECT\\ResearchGUI\\CHEMKED\\CHEMKED_SOLVER.exe"};
Process pr = Runtime.getRuntime().exec(CHEMKED);
BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream()));
String line=null;
while((line=input.readLine()) != null) {
System.out.println("*****");
System.out.println(line);
}
int exitVal;
exitVal = pr.waitFor();
System.out.println("Exited with error code "+exitVal);
} catch(Exception e) {
System.out.println(e.toString());
e.printStackTrace();
}
try{
inputFile3 = new Scanner(new FileReader("CHEMKED\\SOLTMP.txt"));
}catch(Exception e){
e.printStackTrace(System.out);
}
try{
copyFile = new Formatter(new File("CHEMKED\\output-ring1_"+ i +".txt"));
}catch(Exception ex){
ex.printStackTrace(System.out);
}
//copy SOLTMP content to temporary file
while(inputFile3.hasNextLine()){
fileLine = inputFile3.nextLine();
copyFile.format("%s%n",fileLine);
}
copyFile.close();
inputFile3.close();
// Added 07/05/2013
initialTime+= 0.10;
finalTime+= 0.10;
// Added 07.03
updateFile();
i++;
}
到目前为止,这是我添加的内容,与在 javaWorld 上所做的类似。我还没有机会运行它,但只是看看我是否正朝着正确的方向前进。
class StreamGobbler extends Thread
{
InputStream is;
String type;
OutputStream os;
StreamGobbler(InputStream is, String type)
{
this(is, type, null);
}
StreamGobbler(InputStream is, String type, OutputStream redirect)
{
this.is = is;
this.type = type;
this.os = redirect;
}
public void run()
{
try
{
PrintWriter pw = null;
if (os != null)
pw = new PrintWriter(os);
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line=null;
while ( (line = br.readLine()) != null)
{
if (pw != null)
pw.println(line);
System.out.println(type + ">" + line);
}
if (pw != null)
pw.flush();
} catch (IOException ioe)
{
ioe.printStackTrace();
}
}
}
public void chemked(String args[]) {
int i = 1;
while(finalTime < 1.0000) {
if (args.length < 1)
{
System.out.println("USAGE java GoodWinRedirect <outputfile>");
System.exit(1);
}
try{
FileOutputStream fos = new FileOutputStream(args[0]);
String[] CHEMKED = { "C:\\Users\\Luis\\Desktop\\RESEARCHGUIPROJECT\\ResearchGUI\\CHEMKED\\CHEMKED_SOLVER.exe"};
Process pr = Runtime.getRuntime().exec(CHEMKED);
BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream()));
// any error message
StreamGobbler errorGobbler = new
StreamGobbler(pr.getErrorStream(), "ERROR");
// any output
StreamGobbler outputGobbler = new
StreamGobbler(pr.getInputStream(), "OUTPUT", fos);
// start them off
errorGobbler.start();
outputGobbler.start();
String line=null;
while((line=input.readLine()) != null) {
System.out.println("*****");
System.out.println(line);
}
int exitVal;
exitVal = pr.waitFor();
System.out.println("Exited with error code "+exitVal);
fos.flush();
fos.close();
} catch(Exception e) {
System.out.println(e.toString());
e.printStackTrace();
}
try{
inputFile3 = new Scanner(new FileReader("CHEMKED\\SOLTMP.txt"));
}catch(Exception e){
e.printStackTrace(System.out);
}
try{
copyFile = new Formatter(new File("CHEMKED\\output-ring1_"+ i +".txt"));
}catch(Exception ex){
ex.printStackTrace(System.out);
}
//copy SOLTMP content to temporary file
while(inputFile3.hasNextLine()){
fileLine = inputFile3.nextLine();
copyFile.format("%s%n",fileLine);
}
copyFile.close();
inputFile3.close();
// Added 07/05/2013
initialTime+= 0.10;
finalTime+= 0.10;
// Added 07.03
updateFile();
i++;
}
}
告诉我谢谢。
解决方案:
int i = 1;
while(finalTime < 1.0000) {
try{
FileOutputStream fos = new FileOutputStream("C:\\Users\\Luis\\Desktop\\RESEARCHGUIPROJECT\\ResearchGUI\\CHEMKED\\error" +i+".txt");
String[] CHEMKED = { "C:\\Users\\Luis\\Desktop\\RESEARCHGUIPROJECT\\ResearchGUI\\CHEMKED\\CHEMKED_SOLVER.exe", "SOLTMP.txt"};
//Process pr = Runtime.getRuntime().exec(CHEMKED);
ProcessBuilder builder = new ProcessBuilder(CHEMKED);
builder.directory(new File("C:\\Users\\Luis\\Desktop\\RESEARCHGUIPROJECT\\ResearchGUI\\CHEMKED"));
builder.redirectError();
Process pr = builder.start();
BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream()));
// any error message?
StreamGobbler errorGobbler = new
StreamGobbler(pr.getErrorStream(), "ERROR");
// any output?
StreamGobbler outputGobbler = new
StreamGobbler(pr.getInputStream(), "OUTPUT", fos);
// kick them off
errorGobbler.start();
outputGobbler.start();
int exitVal;
exitVal = pr.waitFor();
System.out.println("Exited with error code "+exitVal);
fos.flush();
fos.close();
} catch(Exception e) {
System.out.println(e.toString());
e.printStackTrace();
}
try{
inputFile3 = new Scanner(new FileReader("CHEMKED\\SOLTMP.txt"));
}catch(Exception e){
e.printStackTrace(System.out);
}
try{
copyFile = new Formatter(new File("CHEMKED\\output-ring1_"+ i +".txt"));
}catch(Exception ex){
ex.printStackTrace(System.out);
}
//copy SOLTMP content to temporary file
while(inputFile3.hasNextLine()){
fileLine = inputFile3.nextLine();
copyFile.format("%s%n",fileLine);
}
copyFile.close();
inputFile3.close();
// Added 07/05/2013
initialTime+= 0.10;
finalTime+= 0.10;
// Added 07.03
updateFile();
i++;
}
}
最佳答案
同样,考虑使用 ProcessBuilder 并将其工作目录设置为与执行文件相同的位置。像这样的东西:
String path = "C:/Users/Luis/Desktop/RESEARCHGUIPROJECT/ResearchGUI/CHEMKED/";
String app = "CHEMKED_SOLVER.exe";
List<String> command = new ArrayList<String>();
// command.add(path);
command.add(app);
ProcessBuilder processBuilder = new ProcessBuilder(command);
processBuilder.directory(new File(path));
processBuilder.redirectError();
Process process = processBuilder.start();
BufferedReader bReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
String line = "";
while ((line = bReader.readLine()) != null) {
System.out.println(line);
}
关于java - 从桌面运行可执行文件给我 : *ERR* IO-21 invalid STATUS specifier for given file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17508348/
我想使用结构 DataResponse 作为 JSON() 的参数来响应用户。通过初始化 DataResponse 的实例,我得到了错误消息,给出了太多的参数,但给出了所有必要的参数。 type Da
我正在尝试将 google-one-tap 与本地主机上的 django 项目集成。所以我在 Client ID for Web 的 Authorized JavaScript origins 中添加
考虑一个类A,我如何编写一个具有与相同行为的模板 A& pretty(A& x) { /* make x pretty */ return x; } A pretty(A&& x) {
我正在使用 Hibernate envers 3.6.3.Final。我可以审核表,我可以看到 _audit 表中填充了 revision_number、revision_type 和实体数据。 我正
问题详细描述如下: 给定两个单词(beginWord 和 endWord)和字典的单词列表,找出是否存在从 beginWord 到 endWord 的转换序列,这样: 一次只能更改一个字母 每个转换后
我正在尝试解析任何选定的 mysql 表的单行的所有列字段和数据。 这背后的原因是为任何给定的单行创建一个类似“通用”的表解析器。 例如,我有这个表“tbl1”: +----+------------
我有一个列表,它可能包含也可能不包含重复的元素。给定另一个列表/元素集,我需要该列表中存在的所有唯一元素的列表。 Input: input_list = ['android', 'ios', 'and
需要编写一个算法来查找给定字符串在给定索引处的 Anagram,并按字典顺序排序。例如: Consider a String: ABC then all anagrams are in sorted
给定学生和铅笔的数量,假设学生有 154 名,铅笔有 93 名,如何用 Python 编写代码来获得比率。 输出:x:y 或者说给定两个数字的百分比并找出比率。 输出:x:y 最佳答案 import
给定学生和铅笔的数量,假设学生有 154 名,铅笔有 93 名,如何用 Python 编写代码来获得比率。 输出:x:y 或者说给定两个数字的百分比并找出比率。 输出:x:y 最佳答案 import
作为一名端到端自动化测试人员,我一直认为 Given、When、Then 语句(在使用 Cucumber 时合并到 Gherkin 语言中)应该只按 1.Given、2.When、3 的顺序出现.然后
我正在尝试以动态方式传递参数。我想使用 Perl 函数 given(){},但由于某种原因,我不能在其他任何东西中使用它。这就是我所拥有的。 print(given ($parity) { wh
我想在 cucumber 中测试以下功能。但是,我只想处理输入文件一次(以下功能中的@Given)。但是,它似乎每次都执行@Given 步骤。是否可以在以下功能中仅执行一次此@Given? @file
我想知道是否可以使用 given 参数来自 pytest 的 parametrize 函数。 示例: import pytest from hypothesis import given from h
在deep learning tutorials ,所有训练数据都存储在一个shared数组中,只有该数组的索引被传递给训练函数以切出一个小批量。我知道这允许将数据保留在 GPU 内存中,而不是将小块
我正在尝试运行以下代码: foreach my $k (keys %rec) { #switch for watchlist figures given ($k) { #line 93
我正在尝试在完全支持的情况下使用 GWT 规范,但是它的示例 official documentation有点简单。 在 SO 中搜索我发现了这个问题: Specs2 - How to define
我使用hypothesis 已经有一段时间了。我想知道如何重用 @given parts。 我有一些大约 20 行,我将整个 @given 部分复制到几个测试用例之上。 一个简单的测试例子 @give
我在运行 rspec 文件时不断收到错误: Failures:
让我们调用一个函数 function doSomethingAndInvokeCallback(callback){ // do something callback(); } 我可以
我是一名优秀的程序员,十分优秀!