Here you can find the source of writeString(final ObjectOutput objectOut, final String str)
Parameter | Description |
---|---|
objectOut | the ObjectOutput interface to write a string to. |
str | the String object to write (<code>null</code> permitted). |
Parameter | Description |
---|---|
IOException | if an I/O error occurs. |
public static void writeString(final ObjectOutput objectOut, final String str) throws IOException
//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); } }