|
Scala Library
|
|
object
EncodingHeuristics
extends AnyRef
EncodingHeuristics reads from a stream
(which should be buffered) and attempts to guess
what the encoding of the text in the stream is.
Byte order marks are stripped from the stream.
If it fails to determine the type of the encoding,
it returns the default UTF-8.
Translated from Elliotte Rusty Harold's Java source
| Method Summary | |
def
|
readEncodingFromStream (in : java.io.InputStream) : java.lang.String |
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
def
readEncodingFromStream(in : java.io.InputStream) : java.lang.String
This utility method ????.
in - InputStream to read from.IOException - if the stream cannot be reset back to where it was when the method was invoked.|
Scala Library
|
|