gpt4 book ai didi

java - JFrame 中的 JGraph

转载 作者:行者123 更新时间:2023-11-30 05:56:46 26 4
gpt4 key购买 nike

我想在我的应用程序中绘制一些图形,包括顶点和边。我发现 JGraph 是一个很好的绘制图表的库。我浏览了一些有关它的在线资源,但找不到任何有关如何在 Swing 应用程序中嵌入 JGraph 的相关文章。 (在 JFrame 等中显示 JGraph)。有人可以帮我吗?

最佳答案

这段代码对我有用:

// Insert the cells via the cache, so they get selected
graph.getGraphLayoutCache().insert(cells);

// Show in Frame
JFrame frame = new JFrame();
frame.getContentPane().add(new JScrollPane(graph));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);

如果您想要整个示例,我也可以上传。

我认为该代码一定是该网站的修改示例。给你:

import java.awt.Color;
import java.awt.geom.Rectangle2D;

import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import org.jgraph.JGraph;
import org.jgraph.graph.DefaultEdge;
import org.jgraph.graph.DefaultGraphCell;
import org.jgraph.graph.DefaultGraphModel;
import org.jgraph.graph.GraphConstants;
import org.jgraph.graph.GraphModel;

public class Foo {

public static void main(String[] args) {

// Construct Model and Graph
GraphModel model = new DefaultGraphModel();
JGraph graph = new JGraph(model);
// Control-drag should clone selection
graph.setCloneable(true);

// Enable edit without final RETURN keystroke
graph.setInvokesStopCellEditing(true);

// When over a cell, jump to its default port (we only have one, anyway)
graph.setJumpToDefaultPort(true);

// Insert all three cells in one call, so we need an array to store them
DefaultGraphCell[] cells = new DefaultGraphCell[3];

// Create Hello Vertex
cells[0] = createVertex("Hello", 20, 20, 40, 20, null, false );

// Create World Vertex
cells[1] = createVertex("World", 140, 140, 40, 20,
Color.ORANGE, true);

// Create Edge
DefaultEdge edge = new DefaultEdge("foo");
// Fetch the ports from the new vertices, and connect them with the edge
edge.setSource(cells[0].getChildAt(0));
edge.setTarget(cells[0].getChildAt(0));
cells[2] = edge;

// Create Edge
DefaultEdge edge1 = new DefaultEdge();
// Fetch the ports from the new vertices, and connect them with the edge
// cells[0].addPort();
// cells[1].addPort();
// edge1.setSource(cells[1]);
// edge1.setTarget(cells[0]);
// cells[3] = edge1;

// Set Arrow Style for edge
int arrow = GraphConstants.ARROW_CLASSIC;
GraphConstants.setLineEnd(edge.getAttributes(), arrow);
GraphConstants.setEndFill(edge.getAttributes(), true);

// Insert the cells via the cache, so they get selected
graph.getGraphLayoutCache().insert(cells);

// Show in Frame
JFrame frame = new JFrame();
frame.getContentPane().add(new JScrollPane(graph));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}

public static DefaultGraphCell createVertex(String name, double x,
double y, double w, double h, Color bg, boolean raised) {

// Create vertex with the given name
DefaultGraphCell cell = new DefaultGraphCell(name);

// Set bounds
GraphConstants.setBounds(cell.getAttributes(),
new Rectangle2D.Double(x, y, w, h));

// Set fill color
if (bg != null) {
GraphConstants.setGradientColor(cell.getAttributes(), bg);
GraphConstants.setOpaque(cell.getAttributes(), true);
}

// Set raised border
if (raised) {
GraphConstants.setBorder(cell.getAttributes(),
BorderFactory.createRaisedBevelBorder());
} else // Set black border
{
GraphConstants.setBorderColor(cell.getAttributes(),
Color.black);
}
// Add a Floating Port
cell.addPort();

return cell;
}
}

这是一个非常简单的例子。我已经完成了一些复杂的数据库数据图表,但最终使用 Jung2这更符合我的需求。

关于java - JFrame 中的 JGraph,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6722035/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com