gpt4 book ai didi

java - 从 Java 代码运行 Matlab

转载 作者:太空宇宙 更新时间:2023-11-04 07:38:16 25 4
gpt4 key购买 nike

抱歉,如果我问一个简单的问题,但我想问一下,在执行java源代码时是否可以在其中包含使独立的Matlab程序运行的代码(不仅仅是在java中执行Matlab代码)?我认为这也是一个普遍的问题,是否可以在 Java 代码执行过程中启动其他程序。

谢谢。

最好,

中号

最佳答案

我知道你可以像这样运行外部程序:

import java.io.*;
public class CommandExection {
public CommandExection(String commandline) {
try {
String line;
Process p = Runtime.getRuntime().exec(commandline);
BufferedReader input =
new BufferedReader
(new InputStreamReader(p.getInputStream()));
while ((line = input.readLine()) != null) {
System.out.println(line);
}
input.close();
} catch (Exception err) {
err.printStackTrace();
}
}

public static void main(String argv[]) {
new CommandExection("c:\\Yourprogram.exe");
}

关于java - 从 Java 代码运行 Matlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16462264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com