Java Object Save writeObject(Object o, ObjectOutput dos)

Here you can find the source of writeObject(Object o, ObjectOutput dos)

Description

write Object

License

Open Source License

Declaration

public static void writeObject(Object o, ObjectOutput dos)
            throws IOException 

Method Source Code

//package com.java2s;
/*/*w w  w.ja va 2  s  .c o m*/
 * Copyright (c) 1998 - 2005 Versant Corporation
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * Versant Corporation - initial API and implementation
 */

import java.io.*;

public class Main {
    public static void writeObject(Object o, ObjectOutput dos)
            throws IOException {
        dos.writeObject(o);
    }
}

Related

  1. writeObject(File outFile, Object data)
  2. writeObject(Object data, String filename)
  3. writeObject(Object i)
  4. writeObject(Object o, File f)
  5. writeObject(Object o, File path)
  6. writeObject(Object obj, File path)
  7. writeObject(Object obj, ObjectOutput out)
  8. writeObject(Object object)
  9. writeObject(Object object, File destinationFile)