如何在JCalendar中更改特定日期的颜色?

时间:2017-12-02 08:21:04

标签: java mysql database netbeans-8 jcalendar

我在更改JCalendar中特定日期的颜色时遇到问题。在某些情况下,我可以正确更改日期面板的颜色,如下所示:

as shown here

它正确地突出了我从数据库中检索到的10月5日和13日。

但大多数情况下突出显示的日期不正确,如下所示:

as shown here

它应该突出2017年12月10日,而不是第5届。似乎从星期日到星期四没有计算空组件,这就是为什么它会显示第5个。

我尝试按照解决方案here但我无法理解如何操作。如果你能在不改变代码的情况下帮助我解决这个问题,我将不胜感激。

conn=sqlconn.ConnectDB();
Calendar cal = Calendar.getInstance();
cal.set(Calendar.DAY_OF_MONTH,1);
int offset = cal.get(Calendar.DAY_OF_WEEK);
int mon = calendar.getMonthChooser().getMonth() + 1;
int yr = calendar.getYearChooser().getYear();
JPanel jPanel = calendar.getDayChooser().getDayPanel();
Component component[] = jPanel.getComponents();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

String sql = "SELECT DAYOFMONTH(reserve_date) as day, MONTH(reserve_date) as month, YEAR(reserve_date) as year  FROM reservation";
    try
    {
    pst = conn.prepareStatement(sql);
    rs = pst.executeQuery();
    text.setText("");
    while(rs.next()){
        int dayOfMonth = rs.getInt("day");
        int month = rs.getInt("month");
        int year = rs.getInt("year");

        if(mon == month && yr == year){
            component[dayOfMonth + offset].setBackground(Color.green);
        }

    }
    pst.close();
    rs.close();
}
catch(Exception e)
{
    JOptionPane.showMessageDialog(null, e);
}
finally{
        try{
            rs.close();
            pst.close();
        }catch(Exception e){JOptionPane.showMessageDialog(null, e);}
    }

1 个答案:

答案 0 :(得分:0)

我通过在一个月的第一周找到隐形组件来解决这个问题。

 for(int i = 7; i < 14; i++){
            if(component[i].isVisible() == false){
                ctr++;
            }
        }

然后我只是将ctr的值添加到数组元素中:

if(mon == month && yr == year){
        component[dayOfMonth + offset + ctr].setBackground(Color.green);
    }

一切都在按照自己的意愿运作。我希望这有助于某人!