我使用以下代码制作一个圆圈。我需要创建一个按钮来保存圆的坐标。如何提取这些坐标?
GraphicsContext gc = canvas.getGraphicsContext2D();
gc.setStroke(Color.BLUE);
Random rnd = new Random();
int x = rnd.nextInt((int) canvas.getWidth());
int y = rnd.nextInt((int) canvas.getHeight());
gc.strokeRect(x, y, 100, 100);
答案 0 :(得分:0)
将坐标和任何其他相关数据放入自定义对象或其他集合的ArrayList中,然后在需要时保存集合,但是您计划保存数据,无论是数据库,xml,序列化,...... / p>