All pastes #2062612 Raw Edit

patrick

public text v1 · immutable
#2062612 ·published 2011-05-17 15:47 UTC
rendered paste body
public prova() throws IOException{

   int lol = 12346845;

        try {
            FileOutputStream f = new FileOutputStream("C:\\prova.txt");
            ObjectOutputStream fin= new ObjectOutputStream(f);

            fin.writeObject(lol);
            f.flush();
            f.close();
        } catch (FileNotFoundException ex) {
            System.out.println("eccezione");

        }


}