Java相对路径文件创建中的奇怪行为

时间:2012-11-28 20:16:38

标签: java file relative-path

我在cwd中的文件夹中创建文件时遇到了一些问题 - 我最近从windows切换到mac,看起来好像文件的创建方式存在一些细微差别。

    String servername = "123";
    URL url = null;
    URLConnection con = null;
    int i;
    try {
            File parentFolder = new File("test2");
            System.out.println("folder.exists():"+folder.exists()); // true
            System.out.println("folder.isDirectory():"+folder.isDirectory()); // true

            url = new URL("http://"+servername+".foo.com:8080/foo.bar");
            con = url.openConnection();
            File file = new File(parentFolder, servername+"the_file.out");

            file.getParentFile().mkdirs();

            BufferedInputStream bis = new BufferedInputStream(
                            con.getInputStream());
            BufferedOutputStream bos = new BufferedOutputStream(
                            new FileOutputStream(file.getName()));
            while ((i = bis.read()) != -1) {
                    bos.write(i);
            }
            bos.flush();
            bis.close();
    } catch (MalformedInputException malformedInputException) {
            malformedInputException.printStackTrace();
    } catch (IOException ioException) {
            ioException.printStackTrace();
    }

在此代码段中,我从某个网页下载文件并尝试将其保存在我的项目根目录中名为“test2”的文件夹中。

结果:

MyProject
  test2
  src
  build
  nbproject
  123the_file.out // why doesn't it go into test2?

注意,文件正确下载和写入,但是再次,不在正确的目录中。

2 个答案:

答案 0 :(得分:3)

替换

new FileOutputStream(file.getName()));

new FileOutputStream(file);

您的file对象包含文件夹和文件名。您需要将整个文件对象传递给FileOutputStream。您对它进行编码的方式只是传递名称字符串123the_file.out,因此FileOutputStream将其解释为相对于您的cwd

答案 1 :(得分:1)

请参阅Javadoc File.getName()

  

返回此摘要表示的文件或目录的名称   路径名。这只是路径名称序列中的姓氏。   如果路径名的名称序列为空,则空字符串为   返回。

如果将String传递给FileOutputStream构造函数,它会尝试找出名称所代表的内容,并在当前目录中选择名为foo的文件。如果要携带File对象(包括父目录test2)中包含的所有信息,只需传递对象本身即可。