Changed csv delimiter to ;

This commit is contained in:
Ziver Koc 2014-08-04 16:38:00 +02:00
parent a67a80e168
commit 2c0753aed4
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View file

@ -8,8 +8,8 @@ android {
applicationId "com.ericsson.uecontrol" applicationId "com.ericsson.uecontrol"
minSdkVersion 15 minSdkVersion 15
targetSdkVersion 19 targetSdkVersion 19
versionCode 8 versionCode 9
versionName "1.0.8" versionName "1.0.9"
} }
buildTypes { buildTypes {
release { release {

View file

@ -25,7 +25,7 @@ public class CSVWriter {
public static final String[] HEADINGS = new String[]{ public static final String[] HEADINGS = new String[]{
"Timestamp", "Behaviour", "RX Throughput(b/s)", "TX Throughput(b/s)", "RAT" "Timestamp", "Behaviour", "RX Throughput(b/s)", "TX Throughput(b/s)", "RAT"
}; };
public static final String DELIMITER = ","; public static final String DELIMITER = ";";
protected static final SimpleDateFormat fileDateFormater = new SimpleDateFormat("yyyy-MM-dd_HH-mm-ss"); protected static final SimpleDateFormat fileDateFormater = new SimpleDateFormat("yyyy-MM-dd_HH-mm-ss");
protected static final SimpleDateFormat dateFormater = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS"); protected static final SimpleDateFormat dateFormater = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS");