随笔分类 -  JavaTools

摘要:// POI // 兼容.xls、.xlsx 参数: 路径 sheet 列 行 public static String readExcel(String path, String st, int i, int j) throws IOException { File file = new File(path); ... 阅读全文
posted @ 2018-08-01 11:37 AsapRun
摘要:CSV文件可以看作是以逗号作分隔的TXT文件 写 读 阅读全文
posted @ 2018-03-02 17:08 AsapRun
摘要:jxl.jar .xls读写 仅支持.xls ,不支持.xlsx 阅读全文
posted @ 2018-03-02 15:01 AsapRun
摘要:public static void main(String[] args) throws IOException { File fileTxt = new File("D://uuuuuuuupload//Testlist.txt"); String str1 = new String(); //StringBuffer str2 = new StringBuffer(); ... 阅读全文
posted @ 2018-03-01 11:19 AsapRun