难以访问视频目录

时间:2014-05-13 15:39:44

标签: java

你好我在面板上播放视频

我得到了视频的网址:

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());

但没有工作.....

1 个答案:

答案 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();