IPC (inter process communication) between python and java

前端 未结 6 1230
暖寄归人
暖寄归人 2020-12-31 04:18

First, a little explanation of why I\'m asking this question in the first place: I\'m writing a python program (with a wxPython gui) that needs to call a Java AWT p

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-31 05:02

    I had a similar situation where I had to communicate between a Java process and a Linux process. I used named pipes.

    Try mkfifo() implementation in python.

提交回复
热议问题