我是一个 OPC-UA 新手,使用 Milo 堆栈将非 OPC-UA 系统集成到 OPC-UA 服务器。其中一部分包括将值写入 OPC-UA 服务器中的节点。我的问题之一是来自其他系统的值以 Java 字符串的形式出现,因此需要转换为节点的正确数据类型。我的第一个蛮力概念验证使用下面的代码来创建一个我可以用来写入节点的变体(如在 WriteExample.java 中)。变量值是包含要写入的数据的 Java 字符串,例如“123”表示 Integer 或“32.3”表示 Double。该解决方案现在包括对 Identifiers 类(org.eclipse.milo.opcua.stack.core,参见 switch 语句)中的“类型”进行硬编码,这并不漂亮,我相信有更好的方法来做到这一点?另外,如果我想将“123”转换并写入一个节点,例如,UInt64,我该如何进行?
try {
VariableNode node = client.getAddressSpace().createVariableNode(nodeId);
Object val = new Object();
Object identifier = node.getDataType().get().getIdentifier();
UInteger id = UInteger.valueOf(0);
if(identifier instanceof UInteger) {
id = (UInteger) identifier;
}
System.out.println("getIdentifier: " + node.getDataType().get().getIdentifier());
switch (id.intValue()) {
// Based on the Identifiers class in org.eclipse.milo.opcua.stack.core;
case 11: // Double
val = Double.valueOf(value);
break;
case 6: //Int32
val = Integer.valueOf(value);
break;
}
DataValue data = new DataValue(new Variant(val),StatusCode.GOOD, null);
StatusCode status = client.writeValue(nodeId, data).get();
System.out.println("Wrote DataValue: " + data + " status: " + status);
returnString = status.toString();
} catch (Exception e) {
System.out.println("ERROR: " + e.toString());
}
我查看了 Kevin 对此线程的回复:如何可靠地写入 OPC UA 服务器?但我还是有点迷茫......一些小代码示例真的很有帮助。