1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| try{
fw = new FileWriter(JOptionPane.showInputDialog(null,"Entrez le chemin pour sauvegarder ","Editeur de cartes",JOptionPane.QUESTION_MESSAGE));
for(int i= 0; i<12;i++)
{
for(int j = 0; j<12; j++)
{
if (editeur[j][i]=="MUR")
{
fw.write("0");
}
if (editeur[j][i]=="MARIO")
{
fw.write("1");
}
if (editeur[j][i]=="CAISSE")
{
fw.write("2");
}
if (editeur[j][i]=="OBJECTIF")
{
fw.write("3");
}
if (editeur[j][i]==null)
{
fw.write(" ");
}
}
fw.write("\r\n");
}
fw.close();
}catch(Exception ex){};
} |
Partager