Exception in thread "main" java.lang.IllegalArgumentException: URI scheme is not "file"
时间: 2023-09-22 13:14:28 浏览: 105
This error occurs when trying to create a file object with a URI that does not have the "file" scheme. The file object can only be created with a URI that starts with "file://".
To fix this error, make sure that the URI used to create the file object is in the correct format. If the URI is not a file URI, then you may need to use a different method to create the file object.
相关问题
java.lang.IllegalArgumentException: URI scheme is not "file"
这个错误java.lang.IllegalArgumentException: URI scheme is not "file"是由于代码中使用了不支持的URI scheme导致的。根据引用的解释,这个错误可以理解为必须使用"file"开头的URI scheme,而不能是其他的scheme,比如"http"。这意味着你需要使用File类来访问文件,而不是一个URL来获取文件。你可以按照引用中的示例代码来修改你的代码,使用File类来访问文件。
请注意,你的问题中还提到了另外一个方法getLastModified(),这个方法中也使用了URI来获取文件。如果你在这个方法中也遇到了相同的错误,你也需要按照上述的方法来修改代码。
它报错:java.lang.IllegalArgumentException: URI scheme is not "file"
如果你遇到了 `java.lang.IllegalArgumentException: URI scheme is not "file"` 的错误,这说明你传递的 URI 地址不是以 `"file://"` 开头。
要解决这个问题,你需要确保传递的 URI 地址以 `"file://"` 开头。下面是一个示例代码:
```javaimport java.io.File;
import java.net.URI;
public class Main {
public static void main(String[] args) {
try {
URI uri = new URI("file:///path/to/file.txt"); // 注意以 "file://" 开头 File file = new File(uri);
// 使用创建的 File 对象进行后续操作 //例如,读取文件内容、写入文件等 } catch (Exception e) {
e.printStackTrace();
}
}
}
```
请确保你在传递 URI 地址时,使用了正确的格式来指定文件路径和文件名。如果问题仍然存在,请提供更多关于你的具体需求和错误信息的细节,以便我能更好地帮助你。
阅读全文