本帖最后由 郑云斌 于 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();
}
}
} |