本篇随笔主要介绍了一个用java语言写的将一个文件编码转换为另一个编码并不改变文件内容的工具类: 通过读取源文件内容,用URLEncoding重新编码解码的方式实现. public class ChangeFileEncoding { public static int fileCount = 0; public static String sourceFileRoot = "替换为要转换的源文件或源目录"; // 将要转换文件所在的根目录 public static String s…
1.使用 MessageFormat 格式化文本 int planet = 7; String event = "a disturbance in the Force"; String result = MessageFormat.format( "At {1,time} on {1,date}, there was {2} on planet {0,number,integer}.", planet, new Date(), event); The output…
package vote.utils; import java.security.MessageDigest; import java.text.SimpleDateFormat; import java.util.Date; //数字字符转数值格式 public class ConvertUtil { public int strToInt(String str) { int i = 0; try { if (str != null) i = Integer.parseInt(str); }…