// String localHost = InetAddress.getLocalHost().getHostName();
InetAddress ia = InetAddress.getLocalHost();
String strUserName = System.getProperty("user.name");
JSDataElementTimeStampISO tstIso = new JSDataElementTimeStampISO(new JSDataElementDate(new Date()));
String strValues = this.strFileName + ";" + strUserName + ";" + tstIso.FormattedValue() + ";" + ia.getHostAddress();
fleExclusiveFile.WriteLine(strValues);
message(String.format("%1$s - create exclusive-file-marker with : %2$s", conMethodName, strValues));
fleExclusiveFile.close();
}
}