I want to map an index from my 3D array to a date. I have an array (sortedData[34][12][31]) and I would like to have it so that if a date is selected from JCalendar it corresponds to the correct index in my array. E.g. say the date 01/01/1974 is selected I would like it to map to sortedData[0][0][0].
How would I go about doing this? Thanks.