Computer formatted

This commit is contained in:
2018-07-23 09:14:46 +02:00
parent 84d0086a66
commit bebc0abbb3
92 changed files with 74 additions and 12 deletions

0
src/main/java/util/ByteUtils.java Normal file → Executable file
View File

0
src/main/java/util/Combinations.java Normal file → Executable file
View File

5
src/main/java/util/Export.java Normal file → Executable file
View File

@@ -13,6 +13,7 @@ import data.Filter;
import data.MultipleHMKeys;
import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv.CSVPrinter;
import org.apache.commons.csv.QuoteMode;
import org.apache.commons.lang3.tuple.Pair;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
@@ -167,8 +168,8 @@ public class Export {
OutputStreamWriter fileWriter = null;
CSVPrinter csvFilePrinter = null;
//Create the CSVFormat object with "\n" as a record delimiter
CSVFormat csvFileFormat = CSVFormat.DEFAULT.withRecordSeparator(NEW_LINE_SEPARATOR).withDelimiter(';');
//Create the CSVFormat object with "\n" as a record delimiter it puts all words in braces
CSVFormat csvFileFormat = CSVFormat.DEFAULT.withRecordSeparator(NEW_LINE_SEPARATOR).withDelimiter(';').withQuoteMode(QuoteMode.ALL);
try {
//initialize FileWriter object

0
src/main/java/util/Key.java Normal file → Executable file
View File

0
src/main/java/util/TimeWatch.java Normal file → Executable file
View File

0
src/main/java/util/Util.java Normal file → Executable file
View File

0
src/main/java/util/db/RDB.java Normal file → Executable file
View File