我在 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?
请注意,该文件可以正确下载和写入,但同样不在正确的目录中。