Here you can find the source of writeObjectToFile(File file, Object o)
public static void writeObjectToFile(File file, Object o) throws IOException
//package com.java2s; //License from project: Apache License import java.io.*; public class Main { public static void writeObjectToFile(File file, Object o) throws IOException { ObjectOutputStream oop = new ObjectOutputStream(new FileOutputStream(file)); oop.writeObject(o);// w w w . j a v a2s .c o m oop.close(); } }