2012-08-11 8 views
0

Prefuse를 처음 사용했습니다. GraphML Reader를 사용하여 polbooks.gml 파일을 읽는 중 문제가 발생했습니다. 성공적으로 XML 파일을 읽을 수는 있지만 gml 파일은 읽을 수 없습니다. Prefuse에서 gml 파일을 읽는 방법을 제안하십시오. 은 아래는 GML 리더 만 graphml Reader를 가지고 있지 않은 현재 GraphML 리더GraphML Reader Prefuse를 사용하여 gml 파일 읽기

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)); 
} 
    } 

답변