Java :: Aufgabe #148

0 Lösungen

Bearbeiten & Speichern von CSV Dateien

Fortgeschrittener - Java von ZRX88 - 11.12.2016 um 21:29 Uhr
Das Ziel ist die automatische Verarbeitung von CSV Dateien.

Eine typische Anwendung ist die Anbindung an eine externe API, die eine CSV bei jeden Aufruf zurückgibt. Diese CSV wird in der Regel noch verarbeitet bevor sie in eine Datenbank geladen wird.

The programm should have following functions:
* generate a random csv with a given lenght ( number of rows and columns)
* read and write csv files from a directory
* remove columns
* add the new column "hash" which should be the MD5 hash of all given columns. Note the column is different for all rows.
* add the new column "request_tstamp" which should be the current time, the value should be the same for all rows.
* transform all values of given column in the way that '.' is replaced by ',' or '€' by an empty string

Lösungen:

Für diese Aufgabe gibt es noch keine Lösung.