java读取本地文件备份并解析入库

//从配置文件中获取文件路径
String filePath = Global.getConfig("filePath", "log-resolve.properties");
String copyFilePath = Global.getConfig("copyFilePath", "log-resolve.properties");
try {
String encoding = "utf-8";
File file = new File(filePath);
//判断文件是否存在
if(file.isFile()&&file.exists()){
    //step1 备份文件,清理原文件
    copyFile(filePath, copyFilePath);
    FileWriter fw = new FileWriter(file);
    BufferedWriter bw = new BufferedWriter(fw);
    bw.write("");
    bw.close();
    //step2 读取备份文件,并解析入库
    File fileCopy = new File(copyFilePath);
    InputStreamReader read = new InputStreamReader(new FileInputStream(fileCopy),encoding);
    BufferedReader bufferedReader = new BufferedReader(read);
    String lineTxt = "";
    while((lineTxt=bufferedReader.readLine())!=null){
        System.out.println(lineTxt);
        //截取字符串
        //截取文件编号
        String fileNumber = lineTxt.substring(0, lineTxt.indexOf(" "));
        //截取开始时间
        String str = lineTxt.substring(0, lineTxt.lastIndexOf(" ")-1);
        String startTime = str.substring(str.lastIndexOf(" ")+1);
        //截取文件名
        String fileName = str.substring(str.indexOf(" ")+2, str.lastIndexOf(" ")-1);
        //截取结束时间
        String endTime = lineTxt.substring(lineTxt.lastIndexOf(" ")+1);
        OneWayRunLog oneWayRunLog = new OneWayRunLog();
        oneWayRunLog.setFileNumber(fileNumber);
        oneWayRunLog.setFileName(fileName);
        oneWayRunLog.setStartTime(startTime);
        oneWayRunLog.setEndTime(endTime);
        oneWayRunLogService.save(oneWayRunLog);
    }
    read.close();
}else{
    System.out.println("找不到指定的文件");
}

/**
 * 文件备份
 * */
public static int copyFile(String src, String dst) {
    try {
      int len = 0;
      byte[] buf = new byte[1024];
      FileInputStream fis = new FileInputStream(src);
      FileOutputStream fos = new FileOutputStream(dst);
      while ( (len = fis.read(buf)) != -1) {
        fos.write(buf, 0, len);
      }
      fis.close();
      fos.close();
    }
    catch (IOException e) {
      System.out.println(e);
      return -1;
    }
    return 0;
  }
时间: 2024-10-27 10:38:19

java读取本地文件备份并解析入库的相关文章

Java读取本地文件(输入流)

package cn.buaa; import java.io.File; import java.io.FileInputStream; import java.io.FileReader; import java.io.InputStream; import java.io.Reader; public class Hello { public static void main(String[] args) throws Exception { //字符输入流 inputReaderStra

java读取本地txt文件并插入数据库

package com.cniia.ny.web.control.configManage; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; im

java读取本地text文件

//按字节读取 public static void readByBytes(String url) { File file = new File(url); InputStream in = null; try { in = new FileInputStream(file); int temp; while ((temp = in.read()) != -1) { System.out.println(temp); } } catch (FileNotFoundException e) {

JAVA 读取本地文本文件

String encoding = "GBK"; File file = new File("D:\\jz_activity_exchange_voucher-INSERT.txt"); if (file.isFile() && file.exists()) { //判断文件是否存在 InputStreamReader read = new InputStreamReader( new FileInputStream(file), encoding)

java读取本地文件内容

1.要在F盘下有一个叫test的条形图格式的文件, Java代码   package test; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; public class ReaderFile { public static void main(String[] args) throws Exception { String fileName = "F://test.txt";

myBatis中的注解@Param、返回值为Map、JAVA读取Excel并解析文本、Class.getResource()和ClassLoader.getResource()

myBatis中的注解@Param:http://blog.csdn.net/gao36951/article/details/44258217:  http://www.cnblogs.com/thomas12112406/p/6217211.html. myBatis返回值为Map:http://blog.csdn.net/werewr342352321df/article/details/11892755. ====================== JAVA读取Excel并解析文本:h

分享非常有用的Java程序 (关键代码)(六)---解析/读取XML 文件(重要)

原文:分享非常有用的Java程序 (关键代码)(六)---解析/读取XML 文件(重要) XML文件 <?xml version="1.0"?> <students> <student> <name>John</name> <grade>B</grade> <age>12</age> </student> <student> <name>Mar

JAVA读取Oracle数据库BLOB字段数据文件并保存到本地文件

******JAVA读取Oracle数据库BLOB字段数据文件并保存到本地文件****** package com.bo.test; import java.io.FileOutputStream; import java.io.InputStream; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import

java 中读取本地文件中字符

java读取txt文件内容.可以作如下理解: 首先获得一个文件句柄.File file = new File(); file即为文件句柄.两人之间连通电话网络了.接下来可以开始打电话了. 通过这条线路读取甲方的信息:new FileInputStream(file) 目前这个信息已经读进来内存当中了.接下来需要解读成乙方可以理解的东西 既然你使用了FileInputStream().那么对应的需要使用InputStreamReader()这个方法进行解读刚才装进来内存当中的数据 解读完成后要输出