I am wondering is the following row in valid CSV format:
1338531865,3.2.0,4a60bab27e707b5c,action,4a60bab27e707b5c,2099563141,MY,APAC,2012-06-01,CLICK,{""timestamp"":""2012-06-01 14:24:24""}
The last field has embedded double quote in it, but no comma. I have read http://tools.ietf.org/html/rfc4180 and http://en.wikipedia.org/wiki/Comma-separated_values, and it looks the entire field should be quoted like this:
1338531865,3.2.0,4a60bab27e707b5c,action,4a60bab27e707b5c,2099563141,MY,APAC,2012-06-01,CLICK,"{""timestamp"":""2012-06-01 14:24:24""}"
My Ruby CSV parser also proves my thought. But somehow the original row could pass some Java parser. So I am wondering is the original actually valid CSV or not, or both...