mirror of https://github.com/alibaba/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
780 B
38 lines
780 B
package com.alibaba.excel.cache; |
|
|
|
import java.util.ArrayList; |
|
import java.util.List; |
|
|
|
import com.alibaba.excel.context.AnalysisContext; |
|
|
|
/** |
|
* Putting temporary data directly into a map is a little more efficient but very memory intensive |
|
* |
|
* @author Jiaju Zhuang |
|
*/ |
|
public class MapCache implements ReadCache { |
|
private List<String> cache = new ArrayList<>(); |
|
|
|
@Override |
|
public void init(AnalysisContext analysisContext) {} |
|
|
|
@Override |
|
public void put(String value) { |
|
cache.add(value); |
|
} |
|
|
|
@Override |
|
public String get(Integer key) { |
|
if (key == null || key < 0) { |
|
return null; |
|
} |
|
return cache.get(key); |
|
} |
|
|
|
@Override |
|
public void putFinished() {} |
|
|
|
@Override |
|
public void destroy() {} |
|
|
|
}
|
|
|