你好我在面板上播放视频
我得到了视频的网址:
URL urlWaterIntake = new URL("file:///c:/tmp/water.avi");
但我将' tmp '文件夹移到eclipse IDE的' bin '文件夹中,现在 我通过这个访问:
URL urlWaterIntake = new URL("file:///tmp/water.avi");
AND ERRORR !!!瞧!!生活是什么......,有些解决方案吗?
是的,我也试过这个:File myFile = new File("tmp/water.avi");
URL urlWaterIntake = new URL(myFile.toURI().toURL());
但没有工作.....
答案 0 :(得分:0)
如果要在Windows系统下使用绝对路径,请尝试使用System#getProperty()
获取以下目录。
String userHome = System.getProperty("user.home");
String tempDir = System.getProperty("java.io.tmpdir");
从相同的包中读取该类的存在
URL url = this.getClass().getResource("water.avi");
OR
从项目中与 src 平行的 tmp 文件夹中读取
File file = new File("tmp/water.avi");
URL urlWaterIntake = file.toURI().toURL();