1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Apache POI でフィルターを設定したい

Posted at

Apache POI でフィルターを設定したい場合、Sheet.setAutoFilter を利用します。

例. 2行目すべてにフィルターを設定する

Sheet sheet = ...;
sheet.setAutoFilter(CellRangeAddress.valueOf("2:2"));

image.png

例. C4からG4セルにフィルターを設定する

Sheet sheet = ...;
sheet.setAutoFilter(CellRangeAddress.valueOf("C4:G4"));

image.png

環境情報

pom.xml
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>5.3.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>5.3.0</version>
</dependency>
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?