Skip to content Skip to sidebar Skip to footer

Using Json To Match A String With Today's Date

I have the following JSON file: [ { 'Date' : '11182013', 'Quote' : 'Today Is Monday', 'By' : 'SiKni8' }, { 'Date' : '11192013',

Solution 1:

This is unrelated to the JSON. You are never initializing your String [] date array.

You need something along the lines of...

date = new String[jsonArray.length()];

Post a Comment for "Using Json To Match A String With Today's Date"