我正在尝试创建跨 JVM 锁。为了做到这一点,我想java.io.FileOutputStream在远程 Linux 服务器中的某个位置创建一个位置,如下所示:
some_remote_server.mybiz.com:/tmp/.lock
像这样:
String locStr = "???"
FileOutputStream fos = new FileOutputStream(locStr)
FileLock fl = fos.getChannel().tryLock()
我该如何填写????
慕斯709654
相关分类