//"sampleid:wellid:samplealias:projectname"
String sampleId = sampleinwell.split(":")[0];
String wellId = sampleinwell.split(":")[1];
String sampleAlias = sampleinwell.split(":")[2];
String projectName = sampleinwell.split(":")[3];
XSSFRow row = sheet.createRow(i);
XSSFCell cellA = row.createCell(0);
cellA.setCellValue(wellId);
XSSFCell cellB = row.createCell(1);
cellB.setCellValue(projectName);
XSSFCell cellC = row.createCell(2);