哪里不對呢。。我的商品類的價格用int類型可是我在獲取的時候
我的商品類的價格用int類型可是我在獲取的時候,我在獲取的商品給他設置值的時候他顯示我的類型不對?
while(rs.next()){
Items items=new Items();
items.setCity(rs.getString("city"));
items.setId(rs.getInt("id"));
items.setName(rs.getString("name"));
items.setNumber(rs.getInt("number"));
items.setPicture(rs.getString("picture"));
items.setPrice(rs.getInt("price"));
list.add(items);///每次遍歷把一個商品加入集合
2016-05-26
報什么錯?是不是你的數據庫的id不是int