Hello friends,
I think u can create new spreadsheet in google docs through below
code as I do usually :
DocsService=new DocsService("anything");
URL documentListFeedUrl=new URL("http://docs.google.com/feeds/
documents/private/full");
service.setUserCredentials("username", "password");
com.google.gdata.data.docs.SpreadsheetEntry
newDocument=new
com.google.gdata.data.docs.SpreadsheetEntry();
/* Remember this spreadsheet type is another one...i.e there are two
type of spreadsheet...so use this one....just for doc type entry....it
is same just class is different.........*/
newDocument.setTitle(new PlainTextConstruct("spreadsheet Title"));
service.insert(documentListFeedUrl, newDocument);
I am posting this because as i seen everyone saying we can't create
new spreadsheet in google....we can dude....just use this and enjoy...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Docs Data APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Docs-Data-APIs?hl=en
-~----------~----~----~----~------~----~------~--~---