Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1039437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:05:58+00:00 2026-05-16T15:05:58+00:00

I want to copy a document as mentioned here: http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#CopyingDocs I am using the

  • 0

I want to copy a document as mentioned here:

http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#CopyingDocs

I am using the latest Java Gdata Library, which doesn’t have a nice wrapper method to do it, and I am a newb to the java gdata lib.

I have already got an authenticated DocsService, if that is useful.

Bonus points if you wrap it un into a method which takes two Strings, one being the source name and the other being the copy name.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T15:05:59+00:00Added an answer on May 16, 2026 at 3:05 pm

    Ok I did it….

    Just so everyone can see… this.dService is a DocsService, that already has been authenticated.

    // This method returns the Resource ID to be used to make the copy
    public String loadDocsSpreadsheetEntryId(String sourceName) {
        String resourceId = null;
        try {
    
        Logger.info("Loading feed URL");
        URL url = new URL("https://docs.google.com/feeds/default/private/full" );
        DocumentQuery query = new DocumentQuery(url);
        query.setTitleQuery(sourceName);
        query.setTitleExact(true);
    
        Logger.info("Loaded feed URL");
        DocumentListFeed dfeed = this.dService.getFeed(query, DocumentListFeed.class);
        Logger.info("got feed");
        for (DocumentListEntry entry : dfeed.getEntries()) {
            Logger.info(entry.getTitle().getPlainText());
            if(entry.getTitle().getPlainText().equalsIgnoreCase(sourceName))
            {
                Logger.info("found doc");
                resourceId = entry.getResourceId();
            }
         }
        } catch(Exception e) {
            logException(e, "Loading Source Spreadsheet to copy");
        }
    
        return resourceId;
    }
    
        public void createSpreadsheetFrom(String destination, String source) {
            try {
            URL entryUrl = new URL("http://docs.google.com/feeds/default/private/full");
            Map<String, String> parameters = new HashMap<String, String>();
            String resourceID = loadDocsSpreadsheetEntryId(source);
            Logger.info("Resource id %s", resourceID);
    
            DocumentListEntry newEntry = new DocumentListEntry();
            newEntry.setId(resourceID);
            newEntry.setTitle(new PlainTextConstruct(destination));
            this.dService.insert(entryUrl, newEntry);
    
            } catch(Exception e) {
                logException(e, "Copying Spreadsheet");
            }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to find an exact copy of html code in a document.
Update2: For now, I'm considering saving a temporary copy of the document in html
I want to copy the content of a word document to another, with replacing
Using VBA I want to send a copy of the current word document to
Basically I want to load a HTML document and using controls such as multiple
In my document directory one image is their, with name Image1. I want copy
In My App, I want to copy a node from one document to another
I am very new to XSL/XSLT. I want to copy an xml document into
I want to create a copy of document in the SharePoint document library. Basically
I have config files and various documents that I want to copy from the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.