org.jeecgframework.poi.cache.WordCache Java Examples

The following examples show how to use org.jeecgframework.poi.cache.WordCache. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ParseWord07.java    From autopoi with Apache License 2.0 2 votes vote down vote up
/**
 * 解析07版的Word并且进行赋值
 * 
 * @Author JEECG
 * @date 2013-11-16
 * @return
 * @throws Exception
 */
public XWPFDocument parseWord(String url, Map<String, Object> map) throws Exception {
	MyXWPFDocument doc = WordCache.getXWPFDocumen(url);
	parseWordSetValue(doc, map);
	return doc;
}
 
Example #2
Source File: ParseWord07.java    From jeasypoi with Apache License 2.0 2 votes vote down vote up
/**
 * 解析07版的Word并且进行赋值
 * 
 * @Author JueYue
 * @date 2013-11-16
 * @return
 * @throws Exception
 */
public XWPFDocument parseWord(String url, Map<String, Object> map) throws Exception {
	MyXWPFDocument doc = WordCache.getXWPFDocumen(url);
	parseWordSetValue(doc, map);
	return doc;
}
 
Example #3
Source File: ParseWord07.java    From easypoi with Apache License 2.0 2 votes vote down vote up
/**
 * 解析07版的Word并且进行赋值
 * 
 * @Author JueYue
 * @date 2013-11-16
 * @return
 * @throws Exception
 */
public XWPFDocument parseWord(String url, Map<String, Object> map) throws Exception {
    MyXWPFDocument doc = WordCache.getXWPFDocumen(url);
    parseWordSetValue(doc, map);
    return doc;
}