summaryrefslogtreecommitdiffstats
path: root/src/examples
Commit message (Collapse)AuthorAgeFilesLines
...
* Bug 63889: BarChartDemo now produces a valid fileAlain Béarez2019-11-302-17/+29
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1870604 13f79535-47bb-0310-9956-ffa450edef68
* replace more StringBuffersPJ Fanning2019-11-211-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1870121 13f79535-47bb-0310-9956-ffa450edef68
* replace some uses of StringBuffer with StringBuilderPJ Fanning2019-11-203-19/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1870046 13f79535-47bb-0310-9956-ffa450edef68
* use zero size arg to toArray(), use Collection.addAll() (#63805, second patch)Axel Howind2019-11-175-14/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1869919 13f79535-47bb-0310-9956-ffa450edef68
* #60656 - EMF image support in slideshowsAndreas Beeker2019-11-011-46/+0
| | | | | | | | | | - extract option for embedded element in PPTX2PNG - minor GenericRecordJsonWriter fixes - fix EMF+ world transformations - fix initialization emf pictures, which were partly unbounded -> excessive memory consumption - change EMF+ brushes to continueable record git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1869272 13f79535-47bb-0310-9956-ffa450edef68
* [bug-63774] adding lots of custom properties can cause performance issues ↵PJ Fanning2019-09-261-9/+9
| | | | | | due to way Pid is calculated git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1867597 13f79535-47bb-0310-9956-ffa450edef68
* try to avoid casting to intPJ Fanning2019-09-143-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1866933 13f79535-47bb-0310-9956-ffa450edef68
* ExcelComparator: Adjust iterating rows/columnsDominik Stadler2019-06-051-29/+118
| | | | | | | | Run this sample as part of the integration tests Open the files read-only to not re-write them with changed content Add null-checks and use toString() to prevent exceptions with certain files git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1860688 13f79535-47bb-0310-9956-ffa450edef68
* remove code smellsAlain Béarez2019-05-291-36/+39
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1860311 13f79535-47bb-0310-9956-ffa450edef68
* code inspired from Axel Richter on StackOverflowAlain Béarez2019-05-212-39/+246
| | | | | | | closes #139 closes #144 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1859676 13f79535-47bb-0310-9956-ffa450edef68
* fix result of multiplication cast to wider typeAlain Béarez2019-05-212-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1859595 13f79535-47bb-0310-9956-ffa450edef68
* fix potential input resource leaks (LGTM)Alain Béarez2019-05-211-2/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1859591 13f79535-47bb-0310-9956-ffa450edef68
* code cleanup plus fix for bug 63153Alain Béarez2019-05-214-10/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1859590 13f79535-47bb-0310-9956-ffa450edef68
* Added more chart supports.Alain Béarez2019-05-211-2/+11
| | | | | | fixed bug while creating chart with bar and line series. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1859589 13f79535-47bb-0310-9956-ffa450edef68
* Update site source for 4.1.0, prep build for 4.1.1 (via ant task)Greg Woolsey2019-04-092-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1857217 13f79535-47bb-0310-9956-ffa450edef68
* [github-142] issue in ExcelComparator example. Thanks to chirkovmail. This ↵PJ Fanning2019-03-221-3/+3
| | | | | | close #142 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1856053 13f79535-47bb-0310-9956-ffa450edef68
* purged usages of Cell.setCellType (left only in tests, where conversions are ↵Vladislav Galas2019-01-262-4/+0
| | | | | | tested) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1852247 13f79535-47bb-0310-9956-ffa450edef68
* made call Cell.setCellType(CellType.FORMULA) illegall. Deprecated ↵Vladislav Galas2019-01-262-4/+2
| | | | | | Cell.setCellType(). Purged all redundant calls from project. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1852246 13f79535-47bb-0310-9956-ffa450edef68
* Simplify some string operationsDominik Stadler2018-12-261-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1849760 13f79535-47bb-0310-9956-ffa450edef68
* Code-style: Unify how arrays are specified from C-style to normal Java-styleDominik Stadler2018-12-254-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1849716 13f79535-47bb-0310-9956-ffa450edef68
* #62365 - SVG image support in XSLFAndreas Beeker2018-12-161-67/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1849046 13f79535-47bb-0310-9956-ffa450edef68
* create chart from scratch by sandeeptiwari32Alain Béarez2018-12-082-0/+285
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1848432 13f79535-47bb-0310-9956-ffa450edef68
* remove duplicate attempt to add column headersPJ Fanning2018-11-131-4/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846549 13f79535-47bb-0310-9956-ffa450edef68
* remove unused importPJ Fanning2018-11-131-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846548 13f79535-47bb-0310-9956-ffa450edef68
* add testcase for https://bz.apache.org/bugzilla/show_bug.cgi?id=62906PJ Fanning2018-11-131-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846489 13f79535-47bb-0310-9956-ffa450edef68
* Adjust sample for creating comments to also create a .xlsx fileDominik Stadler2018-10-261-26/+48
| | | | | | Enhance workbook factory to allow to create new empty workbooks as well git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1844881 13f79535-47bb-0310-9956-ffa450edef68
* Typos and IDE warningsDominik Stadler2018-10-263-18/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1844879 13f79535-47bb-0310-9956-ffa450edef68
* adding tricks from other answers on StackOverflowAlain Béarez2018-10-053-5/+43
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842959 13f79535-47bb-0310-9956-ffa450edef68
* example from StackOverflow question 47065690Alain Béarez2018-10-051-0/+164
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842925 13f79535-47bb-0310-9956-ffa450edef68
* more XDDF improvements based on SO examplesAlain Béarez2018-10-055-0/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842876 13f79535-47bb-0310-9956-ffa450edef68
* XDDF improvements based on StackOverflow examplesAlain Béarez2018-10-035-20/+86
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842728 13f79535-47bb-0310-9956-ffa450edef68
* fix lgtm alerts in examplesAlain Béarez2018-10-0310-108/+144
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842707 13f79535-47bb-0310-9956-ffa450edef68
* change chart data to experiment diverse scriptsAlain Béarez2018-10-035-45/+72
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842687 13f79535-47bb-0310-9956-ffa450edef68
* lgtm issuesPJ Fanning2018-09-291-10/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842302 13f79535-47bb-0310-9956-ffa450edef68
* adapting some contributions by Axel Richter on SOAlain Béarez2018-09-263-10/+29
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1841988 13f79535-47bb-0310-9956-ffa450edef68
* update 3.17 leftovers and provide a new build target to update those in the ↵Andreas Beeker2018-09-072-5/+5
| | | | | | | | next release remove final / beta tags, as we (try to) use semver now git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1840318 13f79535-47bb-0310-9956-ffa450edef68
* #62649 - Remove OPOIFS* / rename NPOIFS* to POIFS*Andreas Beeker2018-08-311-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839709 13f79535-47bb-0310-9956-ffa450edef68
* #62649 - Remove OPOIFSAndreas Beeker2018-08-265-192/+79
| | | | | | Fix HPSF UTF-8 encoding error with Bug52311.doc while refactoring CopyCompare/EntryUtils git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839201 13f79535-47bb-0310-9956-ffa450edef68
* Remove some IDE warningsDominik Stadler2018-08-231-27/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1838733 13f79535-47bb-0310-9956-ffa450edef68
* start process of introducing an interface for Styles and Themes TablesPJ Fanning2018-07-261-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1836732 13f79535-47bb-0310-9956-ffa450edef68
* add SharedStrings interface to allow our XSSF code to more easily extended ↵PJ Fanning2018-07-251-1/+2
| | | | | | by external projects git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1836674 13f79535-47bb-0310-9956-ffa450edef68
* [bug-62435] Rename getAllEmbedds method to getAllEmbeddedParts ↵PJ Fanning2018-06-064-5/+5
| | | | | | (getAllEmbedds is retained but deprecated) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1833059 13f79535-47bb-0310-9956-ffa450edef68
* #62187 - Compiling with Java 10 fails with ClassCastException / use ↵Andreas Beeker2018-06-031-8/+10
| | | | | | commons-compress for zipbomb detection git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832789 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixes andAndreas Beeker2018-06-028-230/+183
| | | | | | disable closing of outputstream in ZipPackage.saveImpl() - see https://stackoverflow.com/questions/50646538/stream-close-exception-occures git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832746 13f79535-47bb-0310-9956-ffa450edef68
* #62355 - unsplit packages - 3 - only importsAndreas Beeker2018-05-278-17/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832360 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2018-05-221-6/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832067 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixes - null dereferenceAndreas Beeker2018-05-211-8/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1831992 13f79535-47bb-0310-9956-ffa450edef68
* Cleanup Biff8EncryptionKey usage and use HPSF constants instead of ↵Andreas Beeker2018-05-011-2/+1
| | | | | | duplicated strings git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1830705 13f79535-47bb-0310-9956-ffa450edef68
* #59893 - Forbid calls to InputStream.availableAndreas Beeker2018-04-271-17/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1830400 13f79535-47bb-0310-9956-ffa450edef68
* Bug 62187 - commit Commons Compress unrelated changesAndreas Beeker2018-04-251-9/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1830061 13f79535-47bb-0310-9956-ffa450edef68