我在Cocoa上有一个用objective-c编写的应用程序,有一些UI。我正计划编写另一个Java应用程序,它可以在后台运行并自动启动(本质上是一个dameon)。然后,Cocoa应用程序将与Java应用程序“通信”,开始定期或按需执行一些任务。这可行吗?如果是这样的话,就编程复杂性而言,两者之间最好的沟通方式是什么?插座通过文件?命名管道?
I have a script that runs on a server and I want it now to send messages to my PC. I want to send TCP or UDP messages to some port. What is the best way to do this (a tutorial will be great)? And ...