java小工具(三)随机返回字符串数组中的字符串
java小工具(三)随机返回字符串数组中的字符串 //随机返回字符串数组中的字符串 public static String RandomStr(String[] strs){ int random_index = (int) (Math.random()*strs.length); return strs[random_index]; }