My problem is, PHP encodes arrays differently, based on if they are consecutive & begin with a zero index, or not. Example:
$arr = array(array(12), array(13));
===> [[12], [13]]
$arr = array("0" => array(12), "1" => array(13));
===> [[12], [13]]
$arr = array("0" => array(12), "2" => array(13));
===> {"0": [12], "2": [13]}
Why is the third one so radically different?
The first example produces a list of lists, the third example produces an object with lists. I need to convert all of these to Java 's Map<Integer, List<Double>>. That is the most generic datatype I could find in Java for these PHP objects. I am using Gson from Google. However, since the examples produces different types of objects, I cannot just read this into a map. I have to first check if it has indices and then adding one by one to a custom map. Please look at the line that says "THERE HAS TO BE A BETTER WAY TO DO THIS PART". This is my code:
import java.lang.StringBuilder;
import com.google.gson.*;
import com.google.gson.reflect.*;
import java.util.Map;
import java.util.HashMap;
import java.util.List;
public class Saving {
public static void main(String[] args) {
String json = "[[12], [13]]";
json = json.trim();
Map<Integer, List<Double>> fuelSavings = null;
// such a cluster****
if(json.startsWith("[[")) { // THERE HAS TO BE A BETTER WAY TO DO THIS PART
// ANY WAY I CAN AVOID THIS ENTIRE IF CONDITION
//implicit keys
fuelSavings = new HashMap<Integer, List<Double>>();
List<List<Double>> temporaryList = new Gson().fromJson(json, new TypeToken<List<List<Double>>>(){}.getType());
int index = 0;
for(List<Double> temporaryListMember: temporaryList) {
fuelSavings.put(index, temporaryListMember);
index++;
}
} else {
// explicit keys
// THIS PART IS PERFECT
fuelSavings = new Gson().fromJson(json, new TypeToken<Map<Integer, List<Double>>>(){}.getType());
}
System.out.println(fuelSavings);
}
}
Any help is appreciated, thanks!