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

I have ported a C shared library to Android using SWIG and the Android-NDK

In order to test some my library API I need to be able to specify files, e.g. to load data from

I am currently doing all my development using an emulator (I don't have a smartphone) and am wondering how I can:

a) move files on to the emulator (possibly adb shell mv?)

b) access those files from my Java code

any pointers gratefully received

share|improve this question

1 Answer

up vote 1 down vote accepted

If you want to have the files within your application, you can put them in the assets/ folder of the root directory of your project (create it if it doesn't exist).

From there you can access them with the AssetManager class

http://developer.android.com/reference/android/content/res/AssetManager.html

You can use the SD card as well, here is explained how to get files onto the enulators SD card

manually put files to android emulator sd card

Here is the documentation on how to access the data afterwards

http://developer.android.com/guide/topics/data/data-storage.html#filesExternal

share|improve this answer
is there an approach where the files can exist outside the application? e.g. an area in the android emulator FS where you can copy files to and open them from your app java code? (or would that be some security issue) – Hiett Aug 3 '12 at 9:13
@Hiett yep, check my update – Hans Hohenfeld Aug 3 '12 at 9:19
thanks for links - one user suggests you can use file explorer, but no explanation of how you would go about mounting the emulator FS in order to do this... i'm going to hava a go at /assets first then investigate the SD route – Hiett Aug 3 '12 at 9:28

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.