Out of memory exception in gson.fromJson()

后端 未结 4 781
醉话见心
醉话见心 2021-01-04 21:21

I use the following code for converting Json string(strWebserviceResult) to my Object:

EntMyClass entMyClass = gson.fromJson(strWebserviceResult,EntMyClass.c         


        
相关标签:
4条回答
  • 2021-01-04 21:47

    Please, read the answer from the author of gson - here

    And my 5 cents:

            JsonReader r = null;
            try {
                Reader reader = new BufferedReader(new InputStreamReader(is));
                r = new JsonReader(reader);
                result = gson.fromJson(r, clazz);
            } finally {
                if (null != r) {
                    r.close();
                }
            }
    
    0 讨论(0)
  • 2021-01-04 21:49

    Try using the fromJson method that takes a JsonReader as input instead. This should allow you to not need the whole input string to be in memory at one time. Here's some sample code:

            final HttpURLConnection c = (HttpURLConnection) url.openConnection();
            final InputStreamReader isr = new InputStreamReader(c.getInputStream());
            final JsonReader reader = new JsonReader(isr);
            final EntMyClass entMyClass = GSON.fromJson(reader, EntMyClass.class);
            reader.close();
            c.disconnect();
    
    0 讨论(0)
  • 2021-01-04 21:49

    As with the other post, I would ask whether there is any way to avoid large memory usage with your app. If you can do that, it will be the most optimal solution. If your app really needs that much memory, you can try setting android:largeHeap="true" for your application in the manifest. Here is the reference:

    http://developer.android.com/reference/android/R.styleable.html#AndroidManifestApplication_largeHeap

    See this video for more information:

    http://www.youtube.com/watch?v=_CruQY55HOk

    0 讨论(0)
  • 2021-01-04 21:49

    First of all. Do you really need to load 2.5MB data into memory?
    At first there is created a big string, then it's parsed (another objects in memory), and then there is created a huge instance of EntMyClass. This approach is really inefficient.

    I guess you have List in this object. Having only information you've provided I'd suggest to stream data into database. Then you can create adapter to show data in ListView.

    There is a lot of ways how to do it. I'm using Jackson library because is the fastest, GSON should have similar functions.

    Assuming you have a list in this object below is example how to store json array in database:

        //create parser
        final JsonParser jsonParser = objectMapper.getJsonFactory().createJsonParser(inputStream);
    
        JsonToken jsonToken = jsonParser.nextToken();
        while ((jsonToken = jsonParser.nextToken()) != null && jsonToken != JsonToken.END_ARRAY) {
            //map json object to ItemClass
            final ItemClass item = jsonParser.readValueAs(ItemClass.class);
            //store in database
            itemDAO.insert(item);
        }
    

    And surround it with database transaction, not only data will be rollback in case of error but it's also more efficient.

    0 讨论(0)
提交回复
热议问题