gpt4 book ai didi

mysql 中的 Java 枚举

转载 作者:行者123 更新时间:2023-12-02 08:54:47 25 4
gpt4 key购买 nike

我想从我的数据库中放入和取出产品。该产品的颜色为枚举

public enum Color {
WHITE("#FFFFFF"), BLACK("#000000"), GREEN("#008000"), RED("#FF0000"), BLUE("#0000FF"), YELLOW("#FFFF00"), ORANGE("#FFA500"), PURPLE("#800080"),
GRAY("#808080");

private String color;

Color (String color){
this.color = color;
}

public String getHex() {
return color;
}

}

这里我与我的数据库有关系。应该有颜色颜色而不是字符串颜色。我尝试这两种选择。有什么建议如何修复它吗?

public List<Product> getAllProducts( ){
List<Product> products = new LinkedList<Product>();
Statement statement;
try {
statement = connection.createStatement();
query = "select * from " + tableName;
ResultSet resultSet = statement.executeQuery(query);
/* (name, price, weight, color, product count, size, material */
while(resultSet.next()) {
Long id = resultSet.getLong("id");
String name = resultSet.getString("name");
Float price = resultSet.getFloat("price");
Float weight = resultSet.getFloat("weight");
String color = resultSet.getString(("color"));
Integer productCount = resultSet.getInt("productcount");
String size = resultSet.getString("size");
String material = resultSet.getString("material");

Product product = new Product(id, name, price, weight, color, productCount, size, material);
products.add(product);
}

}
catch (SQLException e) {
e.printStackTrace();
}
}

最佳答案

在这种情况下你可以简单地这样做;

Color color = Color.valueOf(resultSet.getString("color"));

应该注意的是,如果 String 不存在枚举元素,则应该用 try-catch 来捕获 IllegalStateException。

关于不相关的注释

将您的语句包装在 try-with-resources 中,否则您将遇到资源泄漏。

try (Statement statement = connection.createStatement()) {

}

考虑使用PreparedStatement

只要可以(应该总是),请始终使用PreparedStatement而不是Statement。 This是一个有用的链接,说明原因。

不要显式修改查询

不要将值插入到查询中。相反,修改PreparedStatement 对象。 SQL 注入(inject)目前是可能的。您的查询将如下所示。

String query = "SELECT * FROM ?";

这将允许您替换 ?通过执行以下操作来使用表名称。

try (PreparedStatement statement = connection.prepareStatement(query)) {
statement.setString(1, tableName);
}

关于mysql 中的 Java 枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60551826/

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