我想生成随机的,唯一的颜色代码。有算法吗? 最佳答案 Random color = new Random(); Color randomColor = new Color(color.nextInt(256),color.nextInt(256),color.nextInt(256)); 学究式地说,不保证是随机的;)