Java Text File Write writeString(final ObjectOutput objectOut, final String str)

Here you can find the source of writeString(final ObjectOutput objectOut, final String str)

Description

Writes (serializes) a string using the specified ObjectOutput interface.

License

Apache License

Parameter

Parameter Description
objectOut the ObjectOutput interface to write a string to.
str the String object to write (<code>null</code> permitted).

Exception

Parameter Description
IOException if an I/O error occurs.

Declaration

public static void writeString(final ObjectOutput objectOut, final String str) throws IOException 

Method Source Code


//package com.java2s;
/*//from   w  ww  .  j ava2s  . com
 * Copyright 2007 the project originators.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.IOException;

import java.io.ObjectOutput;

public class Main {
    /**
     * Writes (serializes) a string using the specified ObjectOutput interface.
     * 
     * @param objectOut the ObjectOutput interface to write a string to.
     * @param str the String object to write (<code>null</code> permitted).
     * 
     * @throws IOException if an I/O error occurs.
     */
    public static void writeString(final ObjectOutput objectOut, final String str) throws IOException {
        objectOut.writeObject(str);
    }
}

Related

  1. writeString(File file, String str, String encoding)
  2. writeString(File file, String string)
  3. writeString(File file, String string)
  4. writeString(File outputFile, String text)
  5. writeString(FileWriter fw, String s)
  6. writeString(final ObjectOutput out, final String s)
  7. writeString(final String data, final int length, final byte[] destination, int offset)
  8. writeString(final String output, final String fileName)
  9. writeString(final String s, final File f)