0

i have a error while running java project in netbeans java.io.FileNotFoundException: C:\firemonitor\build\web\images\2.jpg (The system cannot find the path specified) this is a image processing project i think their is problem in ij.jar or comm.jar file

is their is any file comm.jar-1

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
  • Well `FileNotFoundException` means, hmm... file not found under the path you have specifyed... and what is `ij.jar` or `comm.jar` in the first place? – A4L Apr 02 '14 at 18:08
  • open web browser and put this `file:///C:/firemonitor/build/web/images/2.jpg` and write what you can see – ruhungry Apr 02 '14 at 18:11
  • Welcome to StackOverflow. You may need to show us some of the code in question before anyone will be able to adequately help. It's good practice to edit any relevant code into the question and perhaps add the Stack Trace, and then people will really be able to help. – Rudi Kershaw Apr 02 '14 at 18:24

1 Answers1

0

"\" can't used as the file seperator.Because it is the starting if escape characteres.replace it with double "\" or "/"

Don Chakkappan
  • 7,397
  • 5
  • 44
  • 59