Java OutputStream Write String writeStringKey(final Object key, final ObjectOutputStream oos)

Here you can find the source of writeStringKey(final Object key, final ObjectOutputStream oos)

Description

write String Key

License

Apache License

Declaration

private static void writeStringKey(final Object key, final ObjectOutputStream oos) throws IOException 

Method Source Code

//package com.java2s;
/**/*from  ww  w . j av  a2  s.  c o  m*/
 *  Copyright Terracotta, Inc.
 *
 *  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.ObjectOutputStream;

public class Main {
    private static void writeStringKey(final Object key, final ObjectOutputStream oos) throws IOException {
        oos.writeObject(key);
    }
}

Related

  1. writeString(String s, OutputStream out)
  2. writeString(String str, ObjectOutputStream dos)
  3. writeString(String value, OutputStream os)
  4. writeStringAsAsciiBytes(String in, OutputStream out)
  5. writeStringCompressed(ByteArrayOutputStream baos, String s)
  6. writeStringKey(final Object key, final ObjectOutputStream oos)
  7. writeStringMap(ObjectOutputStream out, Map map)
  8. writeStringSmart(ByteArrayOutputStream baos, String s, Map knownStrings)
  9. writeStringStringMap(Map map, OutputStream os)