Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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..

share|improve this question
I guess you work with an emulator? – Bigflow Feb 19 at 14:22
shouldn't the path be be with double slashes \\? instead of single \ ? – user717630 Feb 19 at 14:29
actually i want to run my project as a java application but i have to use bitmap object in there. – user1851671 Feb 19 at 14:30
what is the relationship with android? can u explain it a bit? – bluebrain Feb 19 at 14:31
ya path is with double slashes but that is not the issue. the error is coming in second line – user1851671 Feb 19 at 14:32
show 2 more comments

closed as not a real question by RoToRa, nfechner, cweiske, Ahmad Kayyali, ElYusubov Feb 21 at 16:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

You can not refer to files on your computer. Your app is running on the phone(or emulator). So if you use a phone then you should move your file to your phone memory and if you are using emulator then you should create a sdcard in avd and then move your file to this virtual sd card (you can do it using file explorer that is in DDMS).

share|improve this answer
I am telling that i am running this project as a java application so there is no emulator or phone – user1851671 Feb 19 at 14:41
And you need Android Bitmap? You could try to copy this class from Android source, but it probably will be hard or even impossible. Explain what do you need it for. Maybe there is another solution. – Michał Z. Feb 19 at 14:44

Put local images in the res/drawable folder. Get the images through

getResouces().getDrawable(R.drawable.name_of_image)
share|improve this answer
i kind of do not understand your solution. Can you explain it please how to use it – user1851671 Feb 19 at 14:45
mobileorchard.com/… This should get you started – Tom Dezentje Feb 19 at 14:48
@user1851671 this is how u will use when u import in android, bu for desktop application u dont need this. – bluebrain Feb 19 at 14:54
2  
Why is this question tagged android? – Tom Dezentje Feb 19 at 14:55

You shall not use pure android classes in your desktop application. The java android uses is a bit different than desktop versions. There are other ways to use an image in pure java such as

BufferedImage image = ImageIO.read(new File("image name and path"));

But don't forget, when you try to make it work it on a android platform, you have to change a lot of things.

For android, first you need to import your image into android project under the folder drawable, then u can access image by

getResouces().getDrawable(R.drawable.name_of_image)

as @T Dezentje suggests.

share|improve this answer
It means you are saying that bitmap image can't be used in java application?? – user1851671 Feb 19 at 16:18
Nope, u have to use some external libraries. check this: thiscouldbebetter.wordpress.com/2011/08/16/… – bluebrain Feb 19 at 17:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.