-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
1,276 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.lzw.data.util; | ||
|
||
/** | ||
* @desp 编码类型 | ||
* <p>版权归作者LZW所有,转载或使用请注明注明GitHub链接,谢谢合作!</p> | ||
* @author LZW | ||
* @version 1.0 | ||
* @date 2019-05-01 | ||
* @website https://github.com/AweiLoveAndroid/CommonDevKnowledge | ||
* @mail [email protected] 有任何疑问欢迎发邮件 或者 加微信咨询(本开源库README.md有介绍) | ||
* | ||
*/ | ||
public interface CharsetNameTypes { | ||
public static final String CHARSETNAME_UTF8 = "UTF-8"; | ||
public static final String CHARSETNAME_UTF16 = "UTF-16"; | ||
public static final String CHARSETNAME_UTF32 = "UTF-32"; | ||
public static final String CHARSETNAME_UNICODE = "UNICODE"; | ||
public static final String CHARSETNAME_GBK = "GBK"; | ||
public static final String CHARSETNAME_GB2312 = "GB2312"; | ||
public static final String CHARSETNAME_GB18030 = "GB18030"; | ||
public static final String CHARSETNAME_ASCII = "ASCII"; | ||
public static final String CHARSETNAME_ISO_8859_1 = "ISO-8859-1"; | ||
} |
Oops, something went wrong.