如何使用Java API过滤我从google-sheets中读取的行

时间:2017-06-27 09:31:06

标签: java google-sheets google-spreadsheet-api google-sheets-api

有没有办法使用Google表格API只读取第X列中包含空单元格的行?

这是我今天从谷歌表中读取的方式 但我没有看到任何"过滤器"方法

    final ValueRange values = service.spreadsheets()
            .values()
            .get(spreadSheetId, range)
            .execute();

1 个答案:

答案 0 :(得分:0)

您可以查看https://www.tutorialspoint.com/spring/spring_autowired_annotation.htm,然后使用BLANK

  

单元格的值必须为空。由条件格式和过滤器支持。不需要ConditionType

这是另一个参考:ConditionValues,您可以使用它来显示/隐藏过滤器或过滤器视图中的行。使用hiddenValues[] (应隐藏的值。)condition (对于要显示的值必须为true的条件。)字段。