Uses of Class
java.io.UnsupportedEncodingException
-
Packages that use UnsupportedEncodingException 软件包 描述 java.io 通过数据流,序列化和文件系统提供系统输入和输出。java.lang 提供对Java编程语言设计至关重要的类。java.net 提供实现网络应用程序的类。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.logging 提供Java¢2平台核心日志记录工具的类和接口。javax.xml.bind.helpers 仅限JAXB提供程序使用:为部分javax.xml.bind
接口提供部分默认实现。 -
-
Uses of UnsupportedEncodingException in java.io
Methods in java.io that throw UnsupportedEncodingException Modifier and Type 方法 描述 String
ByteArrayOutputStream. toString(String charsetName)
通过使用命名为charset
对字节进行解码,将缓冲区的内容转换为字符串。Constructors in java.io that throw UnsupportedEncodingException Constructor 描述 InputStreamReader(InputStream in, String charsetName)
创建一个使用命名字符集的InputStreamReader。OutputStreamWriter(OutputStream out, String charsetName)
创建一个使用命名字符集的OutputStreamWriter。PrintStream(File file, String csn)
使用指定的文件和字符集创建新的打印流,而不需要自动换行。PrintStream(OutputStream out, boolean autoFlush, String encoding)
创建一个新的打印流。PrintStream(String fileName, String csn)
创建一个新的打印流,不需要自动换行,具有指定的文件名和字符集。PrintWriter(File file, String csn)
使用指定的文件和字符集创建一个新的PrintWriter,而不需要自动进行线条刷新。PrintWriter(String fileName, String csn)
使用指定的文件名和字符集创建一个新的PrintWriter,而不需要自动线路刷新。 -
Uses of UnsupportedEncodingException in java.lang
Methods in java.lang that throw UnsupportedEncodingException Modifier and Type 方法 描述 byte[]
String. getBytes(String charsetName)
使用命名的charset将此String
编码为字节序列,将结果存储到新的字节数组中。Constructors in java.lang that throw UnsupportedEncodingException Constructor 描述 String(byte[] bytes, int offset, int length, String charsetName)
通过使用指定的字符集对指定的字节String
进行解码来构造新的String
。String(byte[] bytes, String charsetName)
构造一个新的String
由指定用指定的字节的数组解码charset 。 -
Uses of UnsupportedEncodingException in java.net
Methods in java.net that throw UnsupportedEncodingException Modifier and Type 方法 描述 static String
URLDecoder. decode(String s, String enc)
使用特定的编码方案解码application/x-www-form-urlencoded
字符串。static String
URLEncoder. encode(String s, String enc)
使用特定的编码方案将字符串转换为application/x-www-form-urlencoded
格式。 -
Uses of UnsupportedEncodingException in java.util
Constructors in java.util that throw UnsupportedEncodingException Constructor 描述 Formatter(File file, String csn)
使用指定的文件和字符集构造一个新的格式化程序。Formatter(File file, String csn, Locale l)
使用指定的文件,字符集和区域设置构造一个新的格式化程序。Formatter(OutputStream os, String csn)
使用指定的输出流和字符集构造一个新的格式化程序。Formatter(OutputStream os, String csn, Locale l)
使用指定的输出流,字符集和区域设置构造一个新的格式化程序。Formatter(String fileName, String csn)
构造具有指定文件名和字符集的新格式化程序。Formatter(String fileName, String csn, Locale l)
构造具有指定文件名,字符集和区域设置的新格式化程序。 -
Uses of UnsupportedEncodingException in java.util.logging
Methods in java.util.logging that throw UnsupportedEncodingException Modifier and Type 方法 描述 void
Handler. setEncoding(String encoding)
设置此Handler
使用的字符编码。void
StreamHandler. setEncoding(String encoding)
设置(或更改)此Handler
使用的字符编码。 -
Uses of UnsupportedEncodingException in javax.xml.bind.helpers
Methods in javax.xml.bind.helpers that throw UnsupportedEncodingException Modifier and Type 方法 描述 protected String
AbstractMarshallerImpl. getJavaEncoding(String encoding)
从IANA名称获取相应的Java编码名称。
-