gpt4 book ai didi

java - 为什么无法创建新文件,路径或路径名分隔符是否正确?

转载 作者:行者123 更新时间:2023-11-30 07:19:14 24 4
gpt4 key购买 nike

为什么我无法创建新文件,我想知道是否是因为路径不正确,如果不正确,可能问题出在我的服务器上。

我的代码:

String signaturePath = pathService.getStringByKey(myConstants.REPORT_PATH) + File.separator + "hos_log" + File.separator + params.get("driver");
System.out.println(signaturePath);//it print this: /home/www/MyServer/report/\my_log\jo
String fileName = shortDate + ".jpg";
File file = new File(signaturePath + File.separator + fileName);//file debuged out : \home\www\MyServer\report\my_log\jo\20160601.jpg
dataMap.put("shortDate", shortDate);
dataMap.put("driverId", driverLog.getUserId());
if (file.exists()) {//false.and i go to the sever,there is no such file created.
dataMap.put("icon", "yes");
}else{
dataMap.put("icon", "no");
}
results.add(dataMap);

下面是分隔符的代码:

public static final String separator = "" + separatorChar;

public static final char separatorChar = fs.getSeparator();

public char getSeparator() {
return slash;
}

class Win32FileSystem extends FileSystem {

private final char slash;
private final char altSlash;
private final char semicolon;

public Win32FileSystem() {
slash = ((String) AccessController.doPrivileged(
new GetPropertyAction("file.separator"))).charAt(0);
semicolon = ((String) AccessController.doPrivileged(
new GetPropertyAction("path.separator"))).charAt(0);
altSlash = (this.slash == '\\') ? '/' : '\\';
}

private boolean isSlash(char c) {
return (c == '\\') || (c == '/');
}

private boolean isLetter(char c) {
return ((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z'));
}

private String slashify(String p) {
if ((p.length() > 0) && (p.charAt(0) != slash)) return slash + p;
else return p;
}

我对文件创建感到困惑,尤其是如何编写路径。

现在我添加

file.createNewFile();

正下方

File file = new File(signaturePath + File.separator + fileName);

但是它被异常关闭,在控制台中打印了一次异常,但它不再打印了,并且文件仍然没有在服务器中创建。我们将新服务器重新部署到 Tomcat 之前的代码是正确的,所以我不知道该文件是如何物理创建的,因为我从 @maskacovnik 的答案中获取了信息

================================================== =================事实证明,问题是因为 myConstants.REPORT_PATH 指向的路径是错误的,我显示的代码没有问题。但我仍然对它如何有一个文件感到困惑,即使没有

file.createNewFile();

最佳答案

如果创建一个 File 对象:

File file = new File(signaturePath + File.separator + fileName);

你不会物理地创建一个文件,这就是为什么file.exists()返回false,这只是java对象。

要创建空文件,请使用:

file.createNewFile();

或者使用一些流来写入其中。另请确保您有权创建新文件。

如果路径错误,最好在路径中使用 / 而不是 \。 Windows机器可以很好地解释它。您的 File.separator 是最佳选择 - 它应该独立于平台。

在我看来路径没问题,只是你还没有物理地创建文件。

关于java - 为什么无法创建新文件,路径或路径名分隔符是否正确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37875588/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com