I'm creating a calendar, and i use forloop to loop the days and add JLabel according to each day. However, whenever I change the month of the calendar, let say January has 31 days , and If I change the month to February for example, February will have 31 + 28 days, I'm really confused of how to solve this problem
Here's the code: MonthPanel.java
public class MonthPanel extends JPanel {
private String[] headers = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
private int realDay, realMonth, realYear, currentMonth, currentYear;
private Toolbar toolbar;
private String inputTotal = "";
public MonthPanel() throws IOException {
setLayout(new GridLayout(6,7));
for (String header : headers) {
add(new JLabel(header));
}
changeCalendar();
}
public void changeCalendar(int month) throws IOException {
String[] months = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};
int noDays, monthStart;
Border border = BorderFactory.createLineBorder(Color.BLACK, 1);
GregorianCalendar cal = new GregorianCalendar(2015, month, 1);
noDays = cal.getActualMaximum(GregorianCalendar.DAY_OF_MONTH);
monthStart = cal.get(GregorianCalendar.DAY_OF_WEEK);
for(int i=1; i<= noDays; i++) {
JLabel label = new JLabel(String.valueOf(i));
label.setBackground(Color.WHITE);
label.setBorder(border);
label.setOpaque(true);
add(label);
}
System.out.println(months[month]);
System.out.println(noDays);
}
Toolbar.java
public class Toolbar extends JPanel {
public JComboBox<Object> months;
public JLabel monthName;
private JLabel pictureName;
private MonthListener monthListener;
public Toolbar() throws IOException {
ImageIcon img = new ImageIcon("/Users/naufal/Desktop/pictureC2.jpg");
pictureName = new JLabel(img);
String[] monthsList = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};
months = new JComboBox<Object>(monthsList);
monthName = new JLabel(monthsList[0]);
setLayout(new FlowLayout());
add(months);
add(monthName);
add(pictureName);
}
MainFrame.java - this is where the changes happen, if the user change the calendar it will changes
public class MainFrame extends JFrame {
private Toolbar toolBar;
private MonthPanel monthPanel;
String[] monthsList = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};
public MainFrame() throws IOException {
super("Calendar App");
setLayout(new BorderLayout());
toolBar = new Toolbar();
monthPanel = new MonthPanel();
JComboBox getMonthBox = toolBar.getMonths();
ActionListener acListener = new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
int monthIndex = getMonthBox.getSelectedIndex();
try {
monthPanel.changeCalendar(monthIndex);
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
toolBar.monthName.setText(monthsList[boxCount]);
}
};
toolBar.months.addActionListener(acListener);
setSize(1200,900);
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
add(toolBar, BorderLayout.NORTH);
add(monthPanel);
}
}
Intial Calendar
After I changed the month to february, it appends the current JLabel which is 31(January) JLabel with another 28(February) JLabel
I think this could will do the job you want.
If you have any question or don't understand feel free to ask.
How it works is described in the code by comments.