如何将strokeOval()形状保存到文本文件?

时间:2016-07-23 02:05:39

标签: java graphics2d stroke

我使用以下代码制作一个圆圈。我需要创建一个按钮来保存圆的坐标。如何提取这些坐标?

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);

1 个答案:

答案 0 :(得分:0)

将坐标和任何其他相关数据放入自定义对象或其他集合的ArrayList中,然后在需要时保存集合,但是您计划保存数据,无论是数据库,xml,序列化,...... / p>