漫談可視化Prefuse(一)---從SQL Server資料庫讀取資料

來源:互聯網
上載者:User

標籤:des   style   blog   http   io   ar   color   os   sp   

  上篇《視覺化檢視solo show-----Prefuse內建例子GraphView講解》主要介紹了整個Prefuse工具集具有的一些特徵、架構的運行流程,分析並展現了官方提供的例子GraphView.java。

  這幾天相繼的看了prefuse.data、prefuse.data.expression等包的具體介面,大致瞭解了prefuse架構是如何完成外部資料與prefuse資料之間的映射關係轉換;如何通過prefuse.data.expression包中的各個類完成對於邏輯運算式、字串運算式、常見函數(如加減乘除正弦餘弦預算)等的解析。

在看到prefuse.data.io.sql時發現了幾個主要的類ConnectionFactory、DatabaseDataSource、DataSourceWorker,仔細端詳一番,發現與Java串連Sql server資料庫的方式應有異曲同工之妙,所以準備著手那這塊做個application。網上搜了一番,發現已有前輩們嘗過鮮了,參見這裡,但是串連的是mysql資料庫。通過prefuse api可以看出此項目編寫者對於mysql也是情有獨鐘的。那麼這裡還是來介紹下如何串連sql server,具體分為以下幾步:

  1.下載需要串連的sql server2005的驅動包,其中包括sqljdbc.jar和mssqlserver.jar兩個jar,匯入到工程中。

  2.在sql server2005中分別建立表nodes和edges並填儲值,具體如所示:

  nodes表:

  

  edges表:

  

  nodes表資料:

  

  edges表資料:

  

  3.利用prefuse.data.io.sql包中的類編寫程式碼,具體代碼如下:

public class Example1121_1 {    /**     * @param args     * @throws DataIOException      */    public static void main(String[] args) throws DataIOException {                //------------   1    ------------                String driver = "com.microsoft.sqlserver.jdbc.SQLServerDriver";        String url = "jdbc:sqlserver://localhost:1433;DatabaseName=test";        String username = "sa";        String password = "123456";        DatabaseDataSource dbds = null;        try {            dbds = ConnectionFactory.getDatabaseConnection(driver, url, username, password);        } catch (SQLException e1) {            e1.printStackTrace();        } catch (ClassNotFoundException e1) {            e1.printStackTrace();        }        Table nodes = dbds.getData("select * from nodes");        Table edges = dbds.getData("select * from edges");        Visualization vis = new Visualization();        Graph graph = new Graph(nodes, edges, false, "id", "sid", "tid");                vis.add("graph", graph);        LabelRenderer label = new LabelRenderer("name");        label.setRoundedCorner(10, 10);                 vis.setRendererFactory(new DefaultRendererFactory(label));                int[] palette = new int[]{ColorLib.rgb(255, 180, 180),ColorLib.rgb(190, 190, 255)};        DataColorAction fill = new DataColorAction("graph.nodes" , "gender" , Constants.NOMINAL, VisualItem.FILLCOLOR,palette);        ColorAction text = new ColorAction("graph.nodes", VisualItem.TEXTCOLOR, ColorLib.gray(0));        ColorAction edges1 = new ColorAction("graph.edges", VisualItem.STROKECOLOR, ColorLib.gray(200));                ActionList color = new ActionList();        color.add(fill);        color.add(text);        color.add(edges1);                ActionList layout = new ActionList(Activity.INFINITY);        layout.add(new ForceDirectedLayout("graph"));        layout.add(new RepaintAction());                vis.putAction("color", color);        vis.putAction("layout", layout);                Display display = new Display(vis);        display.setSize(700, 600);        display.addControlListener(new DragControl());        display.addControlListener(new PanControl());        display.addControlListener(new ZoomControl());        display.addControlListener(new WheelZoomControl());        display.addControlListener(new FocusControl(1));        display.addControlListener(new ZoomToFitControl());                JFrame jf = new JFrame();        jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        jf.add(display);        jf.pack();        jf.setVisible(true);                vis.run("color");        vis.run("layout");            }}

  以上代碼主要實現的功能時從nodes表中讀取節點的資訊;從edges表中讀取邊的資訊;並通過語句

LabelRenderer label = new LabelRenderer("name")讀取nodes表中那麼的屬性賦給每一個節點;根據表nodes中的gender屬性為男女性別分別著不同的顏色;添加一些控制器比如拖拽、縮放、平移等。

  3.代碼啟動並執行結果展示如下:

 

通過以上幾步,完成了prefuse與資料庫sql server2005的串連,並讀取圖形所需點和邊的資訊進行圖形化的展示。所以只要掌握了prefuse串連資料庫的思想,串連其他資料庫產品也是同樣的道理,prefuse還支援jdbc/odbc資料庫的串連。

原文連結:http://www.cnblogs.com/bigdataZJ/p/VisualizationPrefuse1.html

漫談可視化Prefuse(一)---從SQL Server資料庫讀取資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.