I am making a java project in eclipse and i need to make a bitmap object in there and i have the address of the image in my computer. I wrote the following code but it is not working
File imgFile = new File("C:\\Users\\KHANNA\\workspace\\javaopensurf_new\\example\\whitehouse1.bmp");
Bitmap image = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
What is the problem or suggest some other way..