이것은 스프레드 시트를 만드는 방법입니다.API를 사용하여 새로운 Google 스프레드 시트에서 첫 번째 줄을 만드는 방법은 무엇입니까?
DocsService client= new DocsService ("idea");
client.useSsl();
client.setOAuthCredentials (oauthParameters, new OAuthHmacSha1Signer());
DocumentListEntry newEntry= new com.google.gdata.data.docs.SpreadsheetEntry();
newEntry.setTitle (new PlainTextConstruct ("GIdeaDB"));
DocumentListEntry insertedEntry= client.insert (new URL (
"https://docs.google.com/feeds/default/private/full/?xoauth_requestor_id="+ userEmail), newEntry);
이제 첫 번째 줄을 쓰고 싶습니다.
하지만 불행히도 모든 API는 seam을 호출하여 name-value-pairs (여기서 이름은 내가 생성하려는 제목)를 삽입하기 때문에 이미 첫 번째 행이 있다는 사실을 기반으로합니다. http://code.google.com/apis/spreadsheets/data/3.0/developers_guide.html#CreatingTableRecords
첫 번째 줄을 어떻게 만들 수 있습니까? 필드 이름을 정의하는 것.
이렇게하면 워크 시트의 크기가 변경됩니다. https://developers.google.com/google-apps/spreadsheets/#modifying_a_worksheets_title_and_size – eddyparkinson
일반 문서는 여기에 있습니다. - 일괄 요청으로 여러 개의 셀을 업데이트하거나 [만들기] : https://developers.google.com/google-apps/ 스프레드 시트/# updating_multiple_cells_with_a_batch_request – jpillora