--- title: nsIScriptableUnicodeConverter slug: Mozilla/Tech/XPCOM/Reference/Interface/nsIScriptableUnicodeConverter translation_of: Mozilla/Tech/XPCOM/Reference/Interface/nsIScriptableUnicodeConverter ---
nsISupports
最后修改于Gecko 1.8 (Firefox 1.5 / Thunderbird 1.5 / SeaMonkey 1.0)Implemented by: @mozilla.org/intl/scriptableunicodeconverter. To create an instance, use:
var converter = Components.classes["@mozilla.org/intl/scriptableunicodeconverter"]
.createInstance(Components.interfaces.nsIScriptableUnicodeConverter);
ACString ConvertFromUnicode(in AString aSrc); |
ACString Finish(); |
AString ConvertToUnicode(in ACString aSrc); |
AString convertFromByteArray([const,array,size_is(aCount)] in octet aData, in unsigned long aCount); |
void convertToByteArray(in AString aString,[optional] out unsigned long aLen,[array, size_is(aLen),retval] out octet aData); |
|
| Attribute | Type | Description |
charset |
string |
Current character set. Throws NS_ERROR_UCONV_NOCONV if the requested charset is not supported. |
Converts the data from Unicode to one Charset. Returns the converted string. After converting, Finish should be called and its return value appended to this return value.
ACString ConvertFromUnicode( in AString aSrc );
Returns the terminator string. Should be called after ConvertFromUnicode() and appended to that function's return value.
ACString Finish();
Converts the data from one Charset to Unicode.
AString ConvertToUnicode( in ACString aSrc );
Converts an array of bytes to a unicode string.
AString convertFromByteArray( [const,array,size_is(aCount)] in octet aData, in unsigned long aCount );
Convert a unicode string to an array of bytes. Finish does not need to be called.
void convertToByteArray(in AString aString,
out unsigned long aLen, 可选
[array, size_is(aLen),retval] out octet aData
);
Converts a Unicode string to an input stream. The bytes in the stream are encoded according to the charset attribute. The returned stream is non-blocking.
nsIInputStream convertToInputStream( in AString aString );
An nsIInputStream that will present the text specified in aString as its data.
aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.aStringcharset attribute.See Reading textual data and Writing textual data for examples.