Java | How to find a value (row and column number) in range of google spreadsheet using API?

后端 未结 2 617
眼角桃花
眼角桃花 2021-01-26 08:53

I am using the Java API (V4) to read and edit the data from a google sheet. So far, I am able to read and edit the data based on the row and column number (index).

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-26 09:52

    According to the documentation, you can find the value using : FindReplaceRequest() and .getFind();

    String cellReq = (new FindReplaceRequest().setFind("samuel")).getFind();
    

提交回复
热议问题