Skip to content

Commit 10cf49d

Browse files
authored
Merge pull request #3394 from ControlSystemStudio/db_export
Db export to Excel
2 parents 543d6be + fa3a7ac commit 10cf49d

File tree

13 files changed

+574
-50
lines changed

13 files changed

+574
-50
lines changed

app/databrowser/pom.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,37 @@
7575
<artifactId>commons-math3</artifactId>
7676
<version>${apache.commons.math.version}</version>
7777
</dependency>
78+
<!-- Lib to read/write MS Office (Excel, ..) files, fetching only POI itself -->
79+
<dependency>
80+
<groupId>org.apache.poi</groupId>
81+
<artifactId>poi</artifactId>
82+
<exclusions>
83+
<exclusion>
84+
<groupId>com.zaxxer</groupId>
85+
<artifactId>SparseBitSet</artifactId>
86+
</exclusion>
87+
<exclusion>
88+
<groupId>org.slf4j</groupId>
89+
<artifactId>slf4j-api</artifactId>
90+
</exclusion>
91+
<exclusion>
92+
<groupId>org.slf4j</groupId>
93+
<artifactId>jcl-over-slf4j</artifactId>
94+
</exclusion>
95+
<exclusion>
96+
<groupId>commons-codec</groupId>
97+
<artifactId>commons-codec</artifactId>
98+
</exclusion>
99+
<exclusion>
100+
<groupId>org.apache.commons</groupId>
101+
<artifactId>commons-collections4</artifactId>
102+
</exclusion>
103+
<exclusion>
104+
<groupId>org.apache.commons</groupId>
105+
<artifactId>commons-math3</artifactId>
106+
</exclusion>
107+
</exclusions>
108+
<version>5.0.0</version>
109+
</dependency>
78110
</dependencies>
79111
</project>

app/databrowser/src/main/java/org/csstudio/trends/databrowser3/Messages.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ public class Messages
118118
ExportStartExport,
119119
ExportTabular,
120120
ExportTabularTT,
121+
ExportTypeExcel,
122+
ExportTypeExcelFilenamePrompt,
123+
ExportTypeExcelTT,
121124
ExportTypeMatlab,
122125
ExportTypeMatlabTT,
123126
ExportTypeSpreadsheet,

0 commit comments

Comments
 (0)