HELLO I made a video plays on a panel
and I get the video's url by this :
URL urlWaterIntake = new URL("file:///c:/tmp/water.avi");
BUT I moved the 'tmp' folder inside the 'bin' folder of eclipse IDE , and now i access by this :
URL urlWaterIntake = new URL("file:///tmp/water.avi");
AND ERRORR !!! voila !! what a life ... , some solutions ??
btw i tried this one too :
File myFile = new File("tmp/water.avi");
URL urlWaterIntake = new URL(myFile.toURI().toURL());
BUT NOTHING WORKS.....