readUTF.Java: Reads a Java (UTF-8) formatted string from a connection
Description
Reads a Java (UTF-8) formatted string from a connection.Usage
Java$readUTF(con, as.character=TRUE, ...)
Arguments
con
Binary connection to be read from.
as.character
If TRUE
, the read string converted,
i.e. translated, into an Rcharacter string before
returned, otherwise an integer vector representation of
the Unicode string is returned. synopsis
readUTF.Java(static, con, as.character=TRUE, ...)Details
Currently only 8-bit UTF-8 byte sequences are supported, i.e. plain
ASCII sequences, i.e. characters that take up more than one byte are
read incorrectly without any warnings.