Tagged Questions
0
votes
0answers
86 views
[IPC using java.lang.process]How to send keystrokes to getch() in C program executed by java.lang.process
I am trying to learn IPC using java.lang.process, I created a C program
#include <stdio.h>
int main()
{
/*char *options=malloc(sizeof(char[10]));*/
char options;
int t=0;
...
0
votes
3answers
658 views
Equivalent function to C's “_getch()” in Java?
I was messing around with C/C++ and recently found the _getch() function. I also recently got an invite to Google Wave (amazing, btw), and I wanted to emulate the ability to send messages before you ...