addgroup opc
时间: 2023-10-01 08:06:31 浏览: 192
OPC应用程序入门
3星 · 编辑精心推荐
根据提供的代码,您可以使用以下代码片段在Java中连接到您创建的OPC UA服务器并读取节点名称:
```java
import org.eclipse.milo.opcua.sdk.client.OpcUaClient;
public class OpcUaClientTest {
public static void main(String[] args) throws Exception {
String endPointUrl = "opc.tcp://localhost:12688";
OpcUaClient client = OpcUaUtil.createClient(endPointUrl, null, null);
OpcUaUtil.browse(null, client);
Thread.sleep(Integer.MAX_VALUE);
}
}
```
在上述代码中,我们通过指定服务器的连接地址("opc.tcp://localhost:12688")来创建一个OPC UA客户端。这将允许我们浏览服务器中的节点信息。
请注意,上述代码片段涉及到了`OpcUaUtil`类的使用,您可能需要根据您的项目配置相应的依赖项。
另外,根据引用中的说明,您可以使用匿名登录访问OPC UA客户端。
阅读全文