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 a local .json file. I don't want it to be on a server, I just want it to be included in my app. I tried to paste it directly into Eclipse in my project, but I got a FileNotFoundException, I also tried to paste it in the workspace folder in Windows Explorer/Finder and got the same exception. Where should I put it?

Thanks!

share|improve this question

5 Answers

up vote 12 down vote accepted

You should put the file either in the /assets or /res/raw directory of your Android project. From there, you can retrieve it with either: Context.getResources().openRawResource(R.raw.filename) or Context.getResources().getAssets().open("filename").

share|improve this answer
2  
to further clarify when to use what: use /res/raw when you need a resource ID to be generated for you. Otherwise, you /assets. – Matthias Aug 18 '11 at 15:02
Thank you sir! :-) – Magnus Aug 18 '11 at 15:04

Put the json file in assets folder, I have used this method like this

public static String jsonToStringFromAssetFolder(String fileName,Context context) throws IOException {
        AssetManager manager = context.getAssets();
        InputStream file = manager.open(fileName);

        byte[] data = new byte[file.available()];
        file.read(data);
        file.close();
        return new String(data);
    }

While parsing we can use the method like:

String jsondata= jsonToStringFromAssetFolder(your_filename, your_context);
jsonFileToJavaObjectsParsing(jsondata);  // json data to java objects implementation 

More Info: Prativa's Blog

share|improve this answer
1  
your answer is very similar to the one in this link prativas.wordpress.com/category/android/… – Prativa Feb 15 at 6:36
+1 for your contribution in your blog about json. – Subra Feb 15 at 12:49
@Subra-thanks for including the reference – Prativa Feb 18 at 4:43

Put the file in the assets folder. You can use the AssetManager open(String fileName) to read the file.

share|improve this answer

Under /assets in your project folder. If you don't have one, make it.

share|improve this answer

I have a Assets folder and I had some files in it but after changing a file I can not see it any more it is returning me null. same file name ... Any idea I have cleaned the project and restarted the Eclipse

share|improve this answer

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.