Programmeren in Java/In- & uitvoer: verschil tussen versies

Verwijderde inhoud Toegevoegde inhoud
Regel 134:
bestandsnaam += ".txt";
//een nieuwe file aanmaken
FileOutputStream deLijst = new FileOutputStream(bestandsnaam, false); //true = append
//alle lottocijfers wegschrijven
for (int i=0; i<w.length; i++) //bij byte[] ook: deLijst.write(b,0,b.length);
deLijst.write(w[i]); //byte, byte[] of char
deLijst.close();
}
Informatie afkomstig van https://nl.wikibooks.org Wikibooks NL.
Wikibooks NL is onderdeel van de wikimediafoundation.