The java.io.ObjectOutput.writeUTF() method is used to write a string in UTF-8 encoding format to the output stream. This method is typically used to serialize objects in Java. The string is written as a sequence of bytes, where each character is encoded using a variable number of bytes.
Java ObjectOutput.writeUTF - 30 examples found. These are the top rated real world Java examples of java.io.ObjectOutput.writeUTF extracted from open source projects. You can rate examples to help us improve the quality of examples.