- 浏览: 8216 次
- 性别:
- 来自: 杭州
最新评论
-
贝塔ZQ:
实现操作读取exce文档,可以用插件进行实现。pageoffi ...
java读取excel、txt 文件内容,传到、显示到另一个页面的文本框里面。
文章列表
第一、 utils 工具类,读取Excel 、Txt文件 的方法! 如下:
public class Excel {
/**
* 读取Excel文件
* @param file
* @return
*/
public static List<String[]> readExcel(File file){
List<String[]> excelValueList = new ArrayList<String[]>();
if (file.exists() && file.canRead() &&am ...