String thisLine;
fis = new FileInputStream(fName);
DataInputStream myInput = new DataInputStream(fis);
Morceau m = null;
Artiste a = null;
Genre g = null;
int counterInstrument = 0;
while ((thisLine = myInput.readLine()) != null) {
if (thisLine.startsWith("./")) {
String strar[] = thisLine.split("\\./");
String musique[] = strar[1].split(";");