Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to send file in xmpp, for that i need to make user to select file in phone I am using file chooser that i have created, I want to put jpg file in simulator(DefaultColorphone) file system but unable to do so,I tried putting file to this path

mytoolkit\appdb\DefaultColorPhone\filesystem

but not working....

any suggestion?

share|improve this question

1 Answer

Try mytoolkit\appdb\DefaultColorPhone\filesystem\root1

UPD: Check root folders for simulator's filesystem

Enumeration roots = FileSystemRegistry.listRoots();
    while(roots.hasMoreElements()) {
        System.out.println((String)roots.nextElement());
    }
share|improve this answer
i tried that too, but not worked – Nirmal- thInk beYond May 30 '11 at 8:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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