我将目录映射到我的机器上,以便我可以通过 Windows 资源管理器浏览和写入它。我想通过java写文件。
File f = new File("http://dev1:8080/data/xml/myTestFile123.xml");
f.createNewFile();
我收到以下错误:
Exception in thread "main" java.io.IOException: The filename, directory name, or volume label syntax is incorrect
at java.io.WinNTFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(Unknown Source)
at MainTest.createTestFile(MainTest.java:156)
at MainTest.main(MainTest.java:72)
有没有办法将文件写入前面有 http:// 的映射目录?因为这就是向我提供目录的方式。它是 Oracle 数据库正在创建的虚拟目录。