`
sydxide2006
  • 浏览: 69838 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
package common.fileOperate; import java.io.*; public class FileRw {  public FileRw() {  }  /**   * 读取文件filePath中一行的数据,并返回这个数据   *   * @param filePath   * @return   * @throws FileNotFoundException   */  public String ReadFileOneLine(String filePath) throws FileNotFoundException {   String currentReco ...
package common.fileOperate; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.text.SimpleDateFormat; import java.util.Date; /**  * Title: Fil ...
package common.excelOprate; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.sql.SQLException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.Locale; import org ...
package common.excelOprate; import java.io.FileInputStream; import java.sql.*; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; public class ReadExcel {  pub ...
mport java.io.IOException; import java.io.InputStream; public class CallCmd {  /**   * 调用.bat的脚本,等待脚本执行完毕后在执行后面的工作.   * @param locationCmd bat脚本的位置C:\\2006121911111AP\\2006121911111.bat   */    public static void  callCmd(String locationCmd){   try {    Process child = Runtime.getRuntime().exec(&quo ...
Global site tag (gtag.js) - Google Analytics