我必须生成一个随机文件名,格式如下:
(Date time duration mob_no Type).wav
其中 Type 是 String 类型。其他变量和往常一样。所有变量Date
, time
, duration
, mob_no
,Type
都是随机的。
我试过这段代码,但它不起作用:
public ArrayList<String> randomFileName() throws ParseException {
for (int i = 0; i < noOfSub; i++) {
START_DATE.add(String.valueOf(theDay.getTime() - 360000000) +
random.nextInt(9999900));
DURATION.add(random.nextInt(9));
A_NO.add(9000000000L + random.nextInt(999999999));
B_NO.add(1000000000L + random.nextInt(999999999));
}
return fileName;
}