14

デベロッパー ガイド Sheets API に関する Google の公式ドキュメントに記載されている単純な Java コードを使用して、My Google Drive アカウントの既存のスプレッドシートに新しいワークシートを正常に作成しましたが、Java コードを使用して Google Drive アカウントに新しいスプレッドシートを作成したいと考えています。リンクでは、そのためのサンプルコードについて言及していません。Spreadserviceクラスで利用可能なさまざまなメソッドをすでに見てきました。

Google スプレッドシート API でこれを行うには?

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

import com.google.gdata.client.spreadsheet.*;
import com.google.gdata.data.Link;
import com.google.gdata.data.PlainTextConstruct;
import com.google.gdata.data.TextConstruct;
import com.google.gdata.data.docs.ExportFormat;
import com.google.gdata.data.spreadsheet.*;
import com.google.gdata.util.*;


import java.io.IOException;
import java.net.*;
import java.util.*;
import javax.xml.soap.Text;


    /**
     *
     * @author satyam
     */
    public class SpreadSheet {

        public static void main(String[] args)
                throws AuthenticationException, MalformedURLException, IOException, ServiceException {

            SpreadsheetService service =   new SpreadsheetService("gBuddy");

            // TODO: Authorize the service object for a specific user (see other sections)
            String USERNAME = "USERNAME";
            String PASSWORD = "PASSWORD";

            service.setUserCredentials(USERNAME, PASSWORD);


            // Define the URL to request.  This should never change.
            URL SPREADSHEET_FEED_URL = new URL(
                    "https://spreadsheets.google.com/feeds/spreadsheets/private/full");

            // Make a request to the API and get all spreadsheets.
            SpreadsheetFeed feed = service.getFeed(SPREADSHEET_FEED_URL, SpreadsheetFeed.class);
            List<SpreadsheetEntry> spreadsheets = feed.getEntries();

            // Iterate through all of the spreadsheets returned
            for (SpreadsheetEntry spreadsheet : spreadsheets) {
    //             Print the title of this spreadsheet to the screen;
                System.out.println(spreadsheet.getTitle().getPlainText());
            }

            SpreadsheetEntry spreadsheet = spreadsheets.get(1);
    //        System.out.println(spreadsheet.getTitle().getPlainText());

    //        // Create a local representation of the new worksheet.
            WorksheetEntry worksheet = new WorksheetEntry();
            worksheet.setTitle(new PlainTextConstruct("New Worksheet"));
            worksheet.setColCount(10);
            worksheet.setRowCount(20);

            // Send the local representation of the worksheet to the API for
            // creation.  The URL to use here is the worksheet feed URL of our
            // spreadsheet.
            URL worksheetFeedUrl = spreadsheet.getWorksheetFeedUrl();
            WorksheetEntry insert = service.insert(worksheetFeedUrl, worksheet);
        }
    }
4

2 に答える 2

28

いくつかの調査の後、この答えを見つけたのは簡単です。Google スプレッドシート APIを使用して Google ドライブに新しいスプレッドシートを作成することはできません。

注: Google スプレッドシート API を使用して Google ドライブの既存のスプレッドシートに新しいワークシートを作成することはできますが、スプレッドシート API を使用して新しいスプレッドシートを作成することはできません。

新しいスプレッドシートまたは Google ドライブがサポートするその他の種類のドキュメントを作成およびアップロードするには、Google ドライブ APIを使用する必要があります。

これが私が探しているものです。これにより、Google ドライブ API を使用して Google ドライブに新しいスプレッドシートを作成できます。

    DocsService docsService = new DocsService("MySampleApplication-v3");
    docsService.setUserCredentials(USERNAME, PASSWORD);
    URL GOOGLE_DRIVE_FEED_URL = new URL("https://docs.google.com/feeds/default/private/full/");
    DocumentListEntry documentListEntry = new com.google.gdata.data.docs.SpreadsheetEntry();
    documentListEntry.setTitle(new PlainTextConstruct("Spreadsheet_name"));
    documentListEntry = docsService.insert(GOOGLE_DRIVE_FEED_URL, documentListEntry);

新しいスプレッドシートを作成するには、new SpreadsheetEntry()オブジェクトを作成する必要があり、他のドキュメントについてはnew DocumentEntry()オブジェクトを作成する必要があります。

今、Googleドライブにあらゆる種類のドキュメント(xls、doc、imageなど)をアップロードする必要がある場合は、次のようにすることができます

//File upload in google drive
        DocumentListEntry uploadFile = new DocumentListEntry();
        uploadFile.setTitle(new PlainTextConstruct("FILE_NAME_DISPLAY_IN_DRIVE"));
        uploadFile.setFile(new File("FILE_PATH"), "MIME_TYPE_OF_FILE");
        uploadFile = docsService.insert(GOOGLE_DRIVE_FEED_URL, uploadFile);
于 2013-10-14T17:43:58.807 に答える