For some reason you might need to get the data type of your Java variable. Here’s an example of what you can try:
1 2 3 |
String date_created = "2016-02-04"; String data_type = date_created.getClass().getSimpleName(); |
Then do whatever you like with data_type
, whose value should be “String”. 🙂