我是 Prefuse 的新手。我在使用 GraphML Reader 读取 polbooks.gml 文件时遇到问题。它可以成功读取 xml 文件但不能读取 gml 文件。请提出如何在 Prefuse 中读取 gml 文件的解决方案。下面是我的 GraphML Reader 代码
package practise;
import prefuse.data.Graph;
import prefuse.data.io.DataIOException;
import prefuse.data.io.GraphMLReader;
public class practise1 {
static Graph graph = null;
public static void main(String[] args){
try{
graph=new GraphMLReader().readGraph("polbooks.gml");
}
catch(DataIOException e){
System.out.print("File Not Found");
}
//System.out.print(graph.getDegree(2));
}
}