Package br.com.neto.model

Examples of br.com.neto.model.Album


    if (!diretorio.exists()) {
      diretorio.mkdirs();
    }

    Album albumSerializado = new Album("Pink Floyd", "Animals");
    Album albumSerializado2 = new Album("Pink Floyd", "The Wall");
    Album albumSerializado3 = new Album("Pink Floyd", "The Division Bell");

    //Serializando os objetos
    FileOutputStream fileOutputStream = new FileOutputStream(new File(c.FILE_DIRETORIO + c.SLASH + "album.ser"));
    ObjectOutputStream objectOutput = new ObjectOutputStream(fileOutputStream);
    objectOutput.writeObject(albumSerializado);
View Full Code Here

TOP

Related Classes of br.com.neto.model.Album

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.