forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
766 B
22 lines
766 B
package com.fanruan.api.consts; |
|
import com.fr.stable.EncodeConstants; |
|
|
|
public class EncodeConstantsKit { |
|
|
|
public static final String ENCODING_UTF_8 = EncodeConstants.ENCODING_UTF_8; |
|
|
|
public static final String ENCODING_GBK = EncodeConstants.ENCODING_GBK; |
|
|
|
public static final String ENCODING_BIG5 = EncodeConstants.ENCODING_BIG5; |
|
|
|
public static final String ENCODING_ISO_8859_1 = EncodeConstants.ENCODING_ISO_8859_1; |
|
|
|
|
|
public static final String ENCODING_UTF_16 = EncodeConstants.ENCODING_UTF_16; |
|
|
|
public static final String ENCODING_EUC_JP = EncodeConstants.ENCODING_EUC_JP; |
|
|
|
public static final String ENCODING_EUC_KR = EncodeConstants.ENCODING_EUC_KR; |
|
|
|
public static final String ENCODING_CP850 = EncodeConstants.ENCODING_CP850; |
|
}
|
|
|