使用JUNG可视化MySQL数据

时间:2015-06-01 08:32:17

标签: mysql jung2

我必须从MySQL数据库中提取数据,我必须使用Jung以网络格式显示这些数据。

我已将程序连接到MySQL数据库。但我不知道如何从数据库中提取顶点到Jung。谁能帮我这个?我可以使用Jung来显示MySQL数据吗?

1 个答案:

答案 0 :(得分:0)

这是我从数据库中提取顶点和边缘数据的方法

String query = "select x, y from table1 where column= 'r '";
        PreparedStatement pest = connection.prepareStatement(query);
        ResultSet rs = pest.executeQuery();
        while (rs.next()) {
            name1[i] = rs.getString("x");
            g.addVertex(name1[i]);
                name4[l] = rs.getString("y");
            System.out.println(name2[l]);
            if (name3[k] != null) {
                g.addVertex(name3[k]);

            } else
                g.removeVertex(name3[k]);
            i++;
            k++;
                        }
        for (k = 1; k < 20; k++) {

            if (name3[k] == null) {

                i = 1;                  
                i++;
                k++;
            } else {
                g.addEdge("G", name1[i], name3[k]);
            }
        }
        rs.close();
        pest.close();