OpenEstate-IO-IS24-CSV is a Java library to read and write real estate data in the IS24-CSV format (version 1.4.0.4), that was used by immobilienscout24.de until 2014.
IS24-CSV is outdated and not used by immobilienscout24.de anymore. We're still supporting this format for compatibility with older real estate software.
IS24-CSV was replaced by a REST webservice in 2014. You can access this webservice from your Java application with OpenEstate-IS24-REST.
- read CSV data according to the specifications of IS24-CSV 1.4.0.4 (see
Is24CsvReadingExample.java
) - write CSV data according to the specifications of IS24-CSV 1.4.0.4 (see
Is24CsvWritingExample.java
)
Download the latest release from GitHub. The provided archive contains all required files (compiled libraries, dependencies, source code and documentations).
Alternatively you can integrate the library from Maven Central Repository into your Maven project. Just add the following dependency to your projects pom.xml
:
<dependency>
<groupId>org.openestate.io</groupId>
<artifactId>OpenEstate-IO-IS24-CSV</artifactId>
<version>1.5</version>
</dependency>
You can find further information in the project wiki. Some example classes for this format are available in the Examples
module.
The specifications for this format are placed in the specs
folder.
- Java 8 or newer
- commons-codec 1.15
- commons-csv 1.9.0
- commons-io 2.11.0
- commons-lang 3.12.0
- SLF4J 1.7.30
Take a look at CHANGELOG.md
for the full changelog.
This library is licensed under the terms of Apache License, Version 2.0. Take a look at LICENSE.txt
for the license text.