hi,
        i'm making a program using java and jsp, and i can log using
authsub, make list of spreadsheets and worksheets, but i need to get
the xml archive of these. til'now im using these code to get a link
for the xml:

        String link = "";
        URL url;
        List<SpreadsheetEntry> spreadsheets = feed.getEntries();
        SpreadsheetEntry entry = spreadsheets.get(selectedss);
        List worksheets = entry.getWorksheets();
        WorksheetEntry worksheet = (WorksheetEntry) worksheets.get
(selectedws);
        url = worksheet.getListFeedUrl();
        link= "<a href=\"" + url.toString() + "\"> xml code</a>";
        return link;

 but i want to get the file, is there any way to do this?
thanks in advance, sorry if my english have flaws
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to