1
我想要按照this guide的方法爲我的節點添加一個現在的Int屬性「val」。本教程建議使用Gephi:如何向節點添加新的屬性?
AttributeController ac = Lookup.getDefault().lookup(AttributeController.class);
AttributeModel model = ac.getModel();
但AttributeController
不存在/無法找到。
我使用的是最新的工具包.jar版本0.9.1,從the download page下載。在這裏您可以找到the JavaDoc。
問題:如何添加VAL屬性,我圖的節點,使node.setAttribute("val", 1)
的作品? (目前拋出java.lang.IllegalArgumentException: The column 'val' is not found
)