java内存 map,用HashMap进行Java内存管理

I am working on an application which reads in a huge amount of data from a database into a Map>>, processes it, and writes the processed reports to a spreadsheet using an in-house xml writer. The whole run can take about 12 hours.

I'm finding I'm getting

Exception in thread "CursorController-Thread-0" java.lang.OutOfMemoryError: Java heap space

at java.lang.AbstractStringBuilder.(AbstractStringBuilder.java:45)

at java.lang.StringBuilder.(StringBuilder.java:68)

When I attempt to write this jumbo file. For this reason I think it would be best to write each Map> (notice that's a layer deeper)as it's finished processing.

My question is, how can I make sure that the Map> is not retained in memory after I write it, since the Map>> will still contain it?

解决方案

Once you're done with the Map> mapped to by the key "key" you simply do

hugeMap.remove("key");

This will "null" out the entry in the hugeMap and make the Map> eligible for garbage collection (i.e., never be part of causing a heap space out of memory).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值