我已经成功地从 Java 代码执行了 C 代码,但是我有一个问题,我想将值读入 C 程序从 Java 代码运行的 C 变量中。怎么做?
我的 C 代码如下。
int main()
{
int op;
printf("\n Hello World... ");
printf("\n Enter any value : ");
scanf("%d",&op);
printf("\n The value entered is : %d",op);
getch();
return 0;
}
我的java代码如下。
import java.io.*;
public class Test {
public static void main(String args[]) {
try {
String s = " ";
Process processCompile = Runtime.getRuntime().exec("e:/Sample.exe");
BufferedReader stdInput = new BufferedReader(new
InputStreamReader(processCompile .getInputStream()));
// read the output from the command
System.out.println("EXE OUTPUT");
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}
} catch(Exception ex) {
ex.printStackTrace();
}
}
}
那么,我必须在 java 代码中进行哪些修改,以便我可以将值输入到 C 变量中。提前致谢