I would like to get QIODevice that represents standard IO streams (stdin, stdout, stderr) in QtJambi, so that i can get notified whenever a new line can be read or written.
|
feedback
|
|
Well, if you just want to have QIODevice implementation for those, you could use something like
(Not 100% sure about Java syntax as I have only used Qt/C++.) But if you want to have notifications, this won't work. In fact, I doubt that anything would work unless you have stdin/stdout redirected to something that supports notifications, like a socket. In that case you'd use QAbstractSocket.setSocketDescriptor() method. | |||
|
feedback
|