如何从 Java 图形中读取坐标?
我的目标是从 Java 程序中的图形中读取坐标点值。我不知道它是否需要一个图表。用户单击平面的各个部分,我需要知道按像素单击了哪些位置,以便我可以找到这些点之间的距离。有没有简单的Java库可以完成这个任务?
My aim is to read coordinate point values from a graph in a Java program. I don't know if it even needs to be a graph. The user clicks on various parts of a plane, and I need to know which places were clicked pixel-wise so that I can find the distances between those points. Are there any simple Java libraries for accomplishing this task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需向 JPanel 添加一个鼠标侦听器即可。
在鼠标监听器中,您可以执行如下操作:
Just add a mouse listener to a JPanel.
In the mouse listener, you can do something like the following: