tcResultSet oim中column type -3的数据类型是什么?

What is the data type of column type -3 in tcResultSet oim?

在打印 processtask 信息时,我得到了列 Process Instance.Task Details.Row Version

的一些非人类可读值

当我通过 API 检查列类型时 tcResultSet.getColumnType("Process Instance.Task Details.Row Version") 它返回的列类型为 -3

能帮我看一下版本吗?我尝试使用 long、float 但它不起作用。

这个栏目类型是ByteArray。您可以使用 tcResultSet.getByteArrayValue

读取值
byte[] bArray = trs.getByteArrayValue(columnArray[j]);
//  value = new String(bArray);   // returns some char non readable

for (int k = 0; k < bArray.length; k++) 
{
    value += bArray[k];
}

System.out.print(value + ";");