- 浏览: 35464 次
- 性别:
- 来自: 广州
最新评论
文章列表
中文转拼音【pinyin4j使用】
- 博客分类:
- 编程
/**
* 汉字转汉语拼音首字母,英文字符不变
*
* @param chinese
* @return
*/
public static String pinyinFirst(String chinese) {
String retVal = "";
char[] chineses = chinese.toCharArray();
HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
defaultFormat.setCaseType(HanyuP ...
/**
* 利用第三方开源包cpdetector获取文件编码格式.
*
* @param filePath
* @return
*/
public static String getFileEncode(String filePath) {
/**
* <pre>
* 1、cpDetector内置了一些常用的探测实现类,这些探测实现类的实例可以通过add方法加进来,如:ParsingDetector、 JChardetFacade、ASCIIDetector、UnicodeDetector.
* 2、detector按照“谁最先返回非空的 ...
Flex Array,Arraylist,ArrayCollection使用详解
1.1.1 Array的申明
//申明arraylist的四种方式
var arr1:Array=