我需要动态地在我的WebContent文件夹中创建一个txt文件

时间:2014-07-23 06:42:15

标签: java cron web-content

你好我需要在我的WebContent文件夹中创建一个文件,从我的main(cron调度程序)方法调用该类中的类我需要在WebContent文件夹中创建一个文件。用于创建文件的代码是< / p>

File file = new File("files/MatUserInformationService2207q.txt");
try {
   file.createNewFile();
} catch (IOException e) {
   // TODO Auto-generated catch block`enter code hereenter code here
   e.printStackTrace();
}

当程序执行抛出异常系统找不到指定的文件时,我不知道在哪里卡住了。

0 个答案:

没有答案