/* * this function will read from excel * and will return the items of excel */ public static String[][] readExcel(String config) ...
分类:
编程语言 时间:
2014-08-19 20:46:05
阅读次数:
204
Java读取.properties配置文件时,可以使用apache的类库,需要用到如下的jar包: 假如存在这样的两个配置文件: db.propertiesinclude = db.propertiesusername = Jason Lipassword = 824 user.pro...
分类:
编程语言 时间:
2014-08-19 18:39:55
阅读次数:
234
Java读取properties配置文件时,中文乱码解决方法 转自:http://pig345.iteye.com/blog/725974碰到了用java.util.Properties读取中文内容(UTF-8格式)的配置文件,发生中文乱码的现象,Java代码Propertiesprop=new.....
分类:
编程语言 时间:
2014-08-18 12:29:54
阅读次数:
227
java读取txt文件class DataLoad{public double[][] LoadTxt(String filePath,int n,int m,int k){double[][] data=new double[m][n];try {String encoding="GBK";Fil...
分类:
编程语言 时间:
2014-08-11 17:20:22
阅读次数:
233
刚开始以为java读取pdf向读取txt文件一样简单,图样图森普!乱码问题!在网上找了下资料,发现Apache的PDFBOX,下面写一下PDFBOX读取PDF的代码。下载jar包:http://pdfbox.apache.org/downloads.html#recent创建pdf,写入pdf的代码...
分类:
编程语言 时间:
2014-08-06 01:37:40
阅读次数:
603
本文转自:http://www.cnblogs.com/lovebread/archive/2009/11/23/1609122.html#undefined目录:按字节读取文件内容按字符读取文件内容按行读取文件内容随机读取文件内容将内容追加到文件尾部public class ReadFromFil...
分类:
编程语言 时间:
2014-08-03 17:45:25
阅读次数:
270
java读取XML文件通用工具类(递归调用) 源代码下载地址:http://www.zuidaima.com/share/1550463285480448.htm...
分类:
编程语言 时间:
2014-08-02 12:52:03
阅读次数:
261
import java.io.EOFException;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.ArrayLis...
分类:
编程语言 时间:
2014-08-01 23:14:42
阅读次数:
309