问题描述
我看到这些线程和。
第二个链接表示Java已经支持UNIX Domain Socket。如果那是真的我需要从Java实现哪个类?。
The second link says that Java already supports UNIX Domain Socket. If that's true what class do I need to implement from Java?.
从第一个链接开始,它表示Java不支持UNIX Domain Socket。如果你需要UNIX Domain Socket,你必须使用第三方库。
From the first link, it says that Java does not support UNIX Domain Socket. If you need UNIX Domain Socket you must use a 3rd-party library.
那么,它是什么?
推荐答案
如果不使用第三方(本机)库,Java无法创建或访问Unix域套接字。上面第二个链接的最后一条评论提到了这一点。
Java cannot create or access Unix Domain Sockets without using a 3rd party (native) library. The last comment on the second link above mentions this.
第一个链接上有一些好的(和正确的)信息。
The first link has some good (and correct) information on it.
这篇关于Java中的UNIX域套接字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!