Google Maps Will Not Accept My .csv File

The following is the structure of the Mapping data:

//****** The MyMaps data file has the data required to make a Google Map
String MyMapsData = new String [1];
int MyMapsPointer = 0

“RecordCount” below points to the last record written out which is the number of
records.
The following is executed when all else has finished:

void MyMaps (int RecordCount){
String Title = “Station,LatLon,Name”;
String w = “”;
int i;
MyMapsData = new String [RecordCount];
MyMapsData[0] = Title;
for (i = 1; i < RecordCount; i++){
Tokens = Mapping_Data[i].split(“,”);
w = Tokens[0] + “,” + Tokens[3] + “,” + Tokens[6];
MyMapsData[MyMapsPointer] = w;
MyMapsPointer ++;
}
saveStrings (MyMapsDataFileName,MyMapsData );
}

Hope this helps
Fred