I'm trying to debug a program I inherited. This program contains Strings, array lists and collections, lots of casting between types, and I need to do some String manipulations (substring
, etc.)
The data look like Strings when printed to the console (e.g., it's a line of text, like Johnson, John
or Chicago Region
), but my code is erroring out with various index out of range
errors, suggesting that my code to cast to String isn't working.
I'd like to try to figure out what data types are coming into and leaving my methods to verify that the program is acting as expected. Is there any way to find a field type in Java? In a perfect world, I could generate console output at every step that would give me the data value and whether it's a String, array list, or collection. Can that be done?