How to add a title to a Google spreadsheet

I am using the gdata-spreadsheet-3.0 jar to enter data into a Google spreadsheet.

I use

 (new ListEntry()).getCustomElements().setValueLocal("Header Name", "Value"); 

But I do not want to create a header manually.

I cannot enter / create table header using Java. Im also cannot enter data using the spreadsheet header (means AB C ...).

Is it possible to create a title or can I use a table title (means AB C ...)?

+5
source share
1 answer

I would try using cell objects / channels to set values ​​in the title bar.

http://code.google.com/apis/spreadsheets/data/3.0/developers_guide.html#CellFeeds

If this works, you can hopefully use list objects / feeds with the specified header names.

0
source

Source: https://habr.com/ru/post/896778/


All Articles