Maybe reformat with a regex? So it becomes like:
insert into my_table values ('1408611728327',0,1408611668.274444000,-2.46,24.779999,-17.46);
This of course assuming the table fields are in the correct order. Something like:
myJson.replace("{","("); // you need round brackets instead of the json style ones
myJson.replace("}",")");
myJson.replaceAll("\".*\": ([^,]*),","$1"); // drops the name of the columns, only keeps the values, comma separated
myJson.replaceAll("\"","\'"); // sql strings are between ' not "
myJson= "insert into my_table values " + myJson + ";";
This will fail if the json has a null attribute and therefore not showing (if x is null the json won't contain x at all, maybe can be changed by config).