Java - 创建新文件,如何使用方法指定目录?

发布于 2024-11-15 13:48:56 字数 626 浏览 2 评论 0原文

我知道如何通过执行以下操作将 file 写入指定目录:

 public void writefile(){

    try{
        Writer output = null;
        File file = new File("C:\\results\\results.txt");
        output = new BufferedWriter(new FileWriter(file));

        for(int i=0; i<100; i++){
           //CODE TO FETCH RESULTS AND WRITE FILE
        }

        output.close();
        System.out.println("File has been written");

    }catch(Exception e){
        System.out.println("Could not create file");
    }

但是,如果在方法中设置了目录,我该如何继续指定目录呢?例如,名为 getCacheDirectory() 的方法。假设所有必要的导入等都已完成..

谢谢:)。

I know how to write a file to a specified directory by doing this:

 public void writefile(){

    try{
        Writer output = null;
        File file = new File("C:\\results\\results.txt");
        output = new BufferedWriter(new FileWriter(file));

        for(int i=0; i<100; i++){
           //CODE TO FETCH RESULTS AND WRITE FILE
        }

        output.close();
        System.out.println("File has been written");

    }catch(Exception e){
        System.out.println("Could not create file");
    }

But how do I go on specifying the directory, if the directory is set in a method? A method called getCacheDirectory() for example. Assuming that all necessary imports etc have been done..

Thanks :).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我乃一代侩神 2024-11-22 13:48:56

您的意思是

    File file = new File(getCacheDirectory() + "\\results.txt");

,如果 getCacheDirectory() 将路径作为 String 返回,那就对了;如果它返回一个 File,那么有一个不同的构造函数:

    File file = new File(getCacheDirectory(), "results.txt");

You mean just

    File file = new File(getCacheDirectory() + "\\results.txt");

That would be right if getCacheDirectory() returned the path as a String; if it returned a File, then there's a different constructor for that:

    File file = new File(getCacheDirectory(), "results.txt");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文