黑马程序员技术交流社区
标题: java 关于随机生成文件,命名问题,求解! [打印本页]
作者: 郑云斌 时间: 2014-5-9 10:33
标题: java 关于随机生成文件,命名问题,求解!
本帖最后由 郑云斌 于 2014-5-9 19:14 编辑
下面是部分程序,要实现的功能是随机数i ,然后生成i.txt,比如随机出来50,就生成50.txt,求解
public static void main(String[] args) {
//构造函数
long i = (long)(Math.random()*10000000000l);
File file = new File("i.txt");
if( !file.exists())
{
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
}
作者: 黄陂酷歌 时间: 2014-5-9 12:49
本帖最后由 黄陂酷歌 于 2014-5-9 12:51 编辑
public static void main(String[] args) {
//构造函数
int flag = 0;
while(flag<50){
long i = (long)(Math.random()*10000000000l);
File file = new File("i.txt");
if( !file.exists())
{
try {
file.createNewFile();
flag++;
} catch (IOException e) {
e.printStackTrace();
}
}
}
else{
continue;
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |