Java | How to find a value (row and column number) in range of google spreadsheet using API?(爪哇 |如何使用 API 在谷歌电子表格范围内查找值(行号和列号)?)
问题描述
我正在使用 Java API (V4) 从谷歌表格中读取和编辑数据.到目前为止,我能够根据行号和列号(索引)读取和编辑数据.
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).
- 我要做的是通过数据的特定值本地化数据(我想使用其值获取特定单元格的行号和列号).
到目前为止,这是我用来编辑数据的工作代码的一部分:
So far this is a part of the working code I used to edit the data:
// Copy the format from A1:C1 and paste it into A2:C5, so the data in
// each column has the same background.
requests.add(new Request()
.setCopyPaste(new CopyPasteRequest()
.setSource(new GridRange()
.setSheetId(0)
.setStartRowIndex(0)
.setEndRowIndex(1)
.setStartColumnIndex(0)
.setEndColumnIndex(3))
.setDestination(new GridRange()
.setSheetId(0)
.setStartRowIndex(1)
.setEndRowIndex(6)
.setStartColumnIndex(0)
.setEndColumnIndex(3))
.setPasteType("PASTE_FORMAT")));
BatchUpdateSpreadsheetRequest batchUpdateRequest = new BatchUpdateSpreadsheetRequest()
.setRequests(requests);
谁能帮帮我?提前谢谢你.
Can anyone please help me? Thank you in advance.
推荐答案
根据 documentation,您可以使用 FindReplaceRequest()
和 .getFind();
According to the documentation, you can find the value using : FindReplaceRequest()
and .getFind();
String cellReq = (new FindReplaceRequest().setFind("samuel")).getFind();
这篇关于爪哇 |如何使用 API 在谷歌电子表格范围内查找值(行号和列号)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:爪哇 |如何使用 API 在谷歌电子表格范围内查找值(行号和列号)?
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01