码迷,mamicode.com
首页 > 编程语言 > 详细

Java将Excel解析为数组集合

时间:2017-04-16 13:24:24      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:contents   work   puts   stream   ret   return   add   exce   .com   

Java将Excel解析为数组集合

 

相关 jar 包:

jxl-2.6.jar

 

 jar 包下载:http://files.cnblogs.com/files/liaolongjun/excel-jar.zip

 

	/**
	 * 返回上传的Excel表格的内容
	 */
	public static List<String[]> parseExcel(InputStream is) throws Exception {
		List<String[]> list = new ArrayList<>();
		Workbook wb = Workbook.getWorkbook(is);
		Sheet sheet = wb.getSheets()[0];
		int columns = sheet.getRow(0).length;
		for (int i = 0; i < sheet.getRows(); i++) {
			String[] line = new String[columns];
			for (int j = 0; j < columns; j++) {
				Cell cell = sheet.getCell(j, i);
				String content = null;
				if (cell != null) {
					content = cell.getContents();
				}
				if (content != null && content.trim().length() == 0) {
					content = null;
				}
				line[j] = content;
			}
			list.add(line);
		}
		return list;
	}

  

Java将Excel解析为数组集合

标签:contents   work   puts   stream   ret   return   add   exce   .com   

原文地址:http://www.cnblogs.com/liaolongjun/p/6718358.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!