Re: Java and C interaction via stdin/stdout

1998-06-17 Thread Stephen Wynne
In message <[EMAIL PROTECTED]>, Richard Hall writes: Runtime.getRuntime().exec("/usr/games/monop"); works just fine, but Process.getInputStream() doesn't seem to work. Richard, It's not exactly "C interaction" that you mean here. There's 1.1 JNI (Java Native Interfaces) for that.

Java and C interaction via stdin/stdout

1998-06-17 Thread Richard Hall
I'd like to create a Java GUI for the monopoly game in the bsdgames package, but I am having trouble getting the Java program to connect to the C program. Runtime.getRuntime().exec("/usr/games/monop"); works just fine, but Process.getInputStream() doesn't seem to work. Has anyone succeeded at ge