Hi ,
We have a spreadsheet to header like this

SingleLine TextCompany NameDecision IntersectionCityNameAddress 2SingleLine
Text

Every time i set the key value for  SingleLineText it just override one
column

The key string singlelinetext value pravanjan
The key string singlelinetext value  Niranjan

I have used multimap to hold the duplicate key values. and it does print
correctly on my logger .

Have used this code push the value but it does overwrite in google sheet.

for(Entry<String, String> key : myMultimap.entries()){

    String thekeyString = key.getKey().toLowerCase().trim().replaceAll(" +",
"");

  thekeyString =thekeyString.replaceAll("[^\\w\\s]","");

    logger.info("The key string   "+thekeyString+"   value "
+key.getValue());


     row.getCustomElements().setValueLocal(thekeyString, key.getValue());

 }

 row = service.insert(listFeedUrl, row);


-- 
Thanks,
Pravanjan
Dev *formcreator <http://alpha.formcreator.a-cti.com/pages/logInForm.jsp>*

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to