I need to send some data to a C program from my app in Android, and I think about using pipes. I read that Java can access to existing pipes (and open them as if it\'s a normal
I think you can use ParcelFileDescriptor.createPipe()
ParcelFileDescriptor.createPipe()
It will return an array of pipe for read and write. For more information, visit the developers website.