- 浏览: 46138 次
- 性别:
- 来自: 杭州
最新评论
-
xiao1258:
可以用pinyin4jAPI,参见 http://www.it ...
常用的java函数(四)中文转拼音 -
tangbob:
代码都写死了。
常用的java函数(八)TXT转XML -
baron.hu:
能不能把你的testtxt.txt文件贴出来啊
常用的java函数(八)TXT转XML -
沈冠军:
...
MySQL中文乱码处理 -
Hojave:
楼主试试这几个字:
昱
馨
凇
覃
鑫
睿
晗
芸
有问题 ...
常用的java函数(四)中文转拼音
文章列表
/**
* <p>
* Title:
* Description:中文转换为拼音
* @version 1.0
*/
public class ChineseSpelling {
private static int[] pyvalue = new int[] { -20319, -20317, -20304, -20295, -20292, -20283, -20265, -20257, -20242, -20230, -20051, -20036, -20032, -20026, -20002, -19990, -19986, -19982, - ...
- 2008-08-04 18:10
- 浏览 6495
- 评论(4)
/* * Db.java
Created on 2007年8月20日, 上午 8:37
*/
import java.io.*;
import java.sql.*;
import java.util.Properties;
public class Db {
private String driver;
private String url;
private String user;
private String password;
private Connection conn;
private Statement ...
- 2008-08-04 18:09
- 浏览 2765
- 评论(0)
/**
* 分割字符串
*
* @param str String 原始字符串
* @param splitsign String 分隔符
* @return String[] 分割后的字符串数组
*/
public static String[] split(String str, String splitsign) {
int index;
if (str == null || splitsign == null)
return null;
ArrayList al = n ...
- 2008-08-04 18:06
- 浏览 2201
- 评论(1)
/**
* 将某个日期以固定格式转化成字符串
*
* @param date
* @return String
*/
public static String dateToStr(java.util.Date date)
{
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String str = sdf.format(date);
return s ...
- 2008-08-04 18:03
- 浏览 1233
- 评论(0)