gpt4 book ai didi

java - 为什么我不能创建新颜色?

转载 作者:行者123 更新时间:2023-11-29 08:47:22 26 4
gpt4 key购买 nike

<分区>

问题解决:使用错误的颜色包

我正在尝试从 csv 文件中读取一些值,当我将其中三个数字放在一起时,它们形成了一个 rgb 值。

但是,出于某种原因,我的 IDE Netbeans 出现以下错误:'new Color(float,float,float) 在类 Color 中具有私有(private)访问权限'

我不知道使用 parseInt 如何产生 float ,即使在将结果也转换为整数之后也是如此。

感谢您的时间和耐心。

    public void initBasicRGB(String definitionCSVContent) {
String[] lines = definitionCSVContent.split("\n");
String[] values;
for (String s : lines) {
values = s.split(";");
if (!s.isEmpty() && values.length==6 ) {
int red = (int)Integer.parseInt(values[1]);
int green = (int)Integer.parseInt(values[2]);
int blue = (int)Integer.parseInt(values[3]);
String nameProvince = values[4];
basicRGB.put(new Color(red,green,blue), nameProvince);
//the error is on the line above
}
}
}

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