Date end = new Date();
long duration = end.getTime() - start.getTime();
DateFormat df = new SimpleDateFormat( dFormat );
BigDecimal resultF = BigDecimal.valueOf( (duration * 1.00) / (loops * 1.00) )
.setScale( 2, BigDecimal.ROUND_HALF_UP );
DecimalFormat dcf = new DecimalFormat( "###.##" );
msgs[0] = adapters[i].getClass().getName() + ';' + df.format( start ) + ';' + df.format( end ) + ';'
+ duration + ";" + dcf.format( resultF );
msgs[1] = "-1";
if ( result == null || !(result instanceof ObjectBean)
|| !((ObjectBean) result).getTheString().equals( "Accepted" ) )
{