SWI-Prolog Did You Know Did you know? This website's code is available Search Documentation:
Pack logtalk -- logtalk-3.90.1/examples/apache_poi/NOTES.md

jupyter: jupytext: text_representation: extension: .md format_name: markdown format_version: '1.3' jupytext_version: 1.16.7 kernelspec: display_name: Logtalk language: logtalk name: logtalk_kernel ---

<!--

This file is part of Logtalk https://logtalk.org/ SPDX-FileCopyrightText: 1998-2025 Paulo Moura <pmoura@logtalk.org> SPDX-License-Identifier: Apache-2.0

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -->

apache_poi

This example is only supported when using XVM (with its jni plug-in installed), SWI-Prolog, or YAP as the backend compiler.

This is a simple example of using a Java library for converting Excel spreadsheets to text using the Apache POI Java library, which you must download from:

https://poi.apache.org

Assuming POI 5.4.0, the following JAR files are required:

[99, 111, 109, 109, 111, 110, 115, 45, 99, 111, 100, 101, 99, 45, 49, 46, 49, 56, 46, 48, 46, 106, 97, 114]
[99, 111, 109, 109, 111, 110, 115, 45, 99, 111, 108, 108, 101, 99, 116, 105, 111, 110, 115, 52, 45, 52, 46, 52, 46, 106, 97, 114]
[99, 111, 109, 109, 111, 110, 115, 45, 99, 111, 109, 112, 114, 101, 115, 115, 45, 49, 46, 50, 55, 46, 49, 46, 106, 97, 114]
[99, 111, 109, 109, 111, 110, 115, 45, 105, 111, 45, 50, 46, 49, 56, 46, 48, 46, 106, 97, 114]
[99, 111, 109, 109, 111, 110, 115, 45, 109, 97, 116, 104, 51, 45, 51, 46, 54, 46, 49, 46, 106, 97, 114]
[99, 117, 114, 118, 101, 115, 97, 112, 105, 45, 49, 46, 54, 46, 48, 46, 106, 97, 114]
[108, 111, 103, 52, 106, 45, 97, 112, 105, 45, 50, 46, 50, 52, 46, 51, 46, 106, 97, 114]
[108, 111, 103, 52, 106, 45, 99, 111, 114, 101, 45, 50, 46, 50, 52, 46, 51, 46, 106, 97, 114]
[112, 111, 105, 45, 53, 46, 52, 46, 48, 46, 106, 97, 114]
[112, 111, 105, 45, 101, 120, 99, 101, 108, 97, 110, 116, 45, 53, 46, 52, 46, 48, 46, 106, 97, 114]
[112, 111, 105, 45, 111, 111, 120, 109, 108, 45, 53, 46, 52, 46, 48, 46, 106, 97, 114]
[112, 111, 105, 45, 111, 111, 120, 109, 108, 45, 102, 117, 108, 108, 45, 53, 46, 52, 46, 48, 46, 106, 97, 114]
[112, 111, 105, 45, 111, 111, 120, 109, 108, 45, 115, 99, 104, 101, 109, 97, 115, 45, 52, 46, 49, 46, 50, 46, 106, 97, 114]
[112, 111, 105, 45, 115, 99, 114, 97, 116, 99, 104, 112, 97, 100, 45, 53, 46, 52, 46, 48, 46, 106, 97, 114]
[83, 112, 97, 114, 115, 101, 66, 105, 116, 83, 101, 116, 45, 49, 46, 51, 46, 106, 97, 114]
[120, 109, 108, 98, 101, 97, 110, 115, 45, 53, 46, 51, 46, 48, 46, 106, 97, 114]
Copy all the JAR files to this example jars folder before running the example.

Running from a terminal

When running this example from the terminal (i.e., not as a notebook), start by setting the Java CLASSPATH environment variable. Three backend Prolog systems are supported: XVM, SWI-Prolog, and YAP. There's a Bash script file that sets the CLASSPATH environment variable when sourced:

$ cd "$LOGTALKUSER/examples/apache_poi"
$ . set_classpath.sh

Similar for Windows using the set_classpath.ps1 PowerShell script.

Running as a notebook

Print Logtalk, Prolog backend, and kernel versions (if running as a notebook):

%versions

Set the required environment variables (edit if using a different Apache POI version):

setenv('CLASSPATH', './jars/commons-codec-1.18.0.jar:./jars/commons-collections4-4.4.jar:./jars/commons-compress-1.27.1.jar:./jars/commons-io-2.18.0.jar:./jars/commons-math3-3.6.1.jar:./jars/curvesapi-1.6.0.jar:./jars/log4j-api-2.24.3.jar:./jars/log4j-core-2.24.3.jar:./jars/poi-5.4.0.jar:./jars/poi-excelant-5.4.0.jar:./jars/poi-ooxml-5.4.0.jar:./jars/poi-ooxml-full-5.4.0.jar:./jars/poi-ooxml-schemas-4.1.2.jar:./jars/poi-scratchpad-5.4.0.jar:./jars/SparseBitSet-1.3.jar:./jars/xmlbeans-5.3.0.jar').

Load the example:

logtalk_load(apache_poi(loader)).

Read a sample.xlsx spreadsheet to a user object db/4 predicate:

spreadsheet::load('test_files/sample.xlsx', user, db).

<!-- true. -->

List all clauses of the db/4 predicate representing the spreadsheet sheets and number of rows:

%%table
db(SheetName, SheetIndex, FirstRow, LastRow).

<!-- Contents = ... . -->

List all clauses of the db/5 predicate representing the spreadsheet sheet contents:

%%table
db(SheetIndex, RowIndex, ColumnIndex, CellType, CellValue).

<!-- ... -->

Define a capitals object with capitals/4-5 predicates:

%%file capitals.lgt

:- object(capitals).

    :- public([
                capitals/4,
                capitals/5
        ]).

        % continents
        capitals(europe, 0, 0, 3).
        capitals(africa, 1, 0, 3).
        % europe
        capitals(0, 0, 0, string, 'Country').
        capitals(0, 0, 1, string, 'Capital').
        capitals(0, 1, 0, string, 'Portugal').
        capitals(0, 1, 1, string, 'Lisboa').
        capitals(0, 2, 0, string, 'Spain').
        capitals(0, 2, 1, string, 'Madrid').
        capitals(0, 3, 0, string, 'France').
        capitals(0, 3, 1, string, 'Paris').
        % africa
        capitals(1, 0, 0, string, 'Country').
        capitals(1, 0, 1, string, 'Capital').
        capitals(1, 1, 0, string, 'Angola').
        capitals(1, 1, 1, string, 'Luanda').
        capitals(1, 2, 0, string, 'Egypt').
        capitals(1, 2, 1, string, 'Cairo').
        capitals(1, 3, 0, string, 'Cape Verde').
        capitals(1, 3, 1, string, 'Praia').

:- end_object.

<!-- true. -->

Save the capitals/4-5 predicates to a capitals.xls spreadsheet:

spreadsheet::save(capitals, capitals, 'capitals.xls').

<!-- true. -->