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); }…