java 之 給定固定長度根據字元長分割文件

ckxllf發表於2019-12-10

  給定固定長度(陣列 aa[ ])

  根據字元長(非位元組長度)分割文件

  最後輸出去除空格以 ^ 拼接的文件

  第一個class

  package work;

  import java.io.BufferedReader;

  import java.io.BufferedWriter;

  import java.io.File;

  import java.io.FileInputStream;

  import java.io.FileWriter;

  import java.io.IOException;

  import java.io.InputStream;

  import java.io.InputStreamReader;

  import java.nio.charset.Charset;

  public class T1 {

  // inputFilePath 輸入檔案路徑

  public static void parseCunegFile(String inputFilePath,String outputFilePath, int[] aa) throws Exception {

  BufferedWriter bw = null;

  BufferedReader br = null;

  int[] bb = new int[aa.length];

  bb[0] = 0;

  for (int i = 1; i < bb.length; i++) {

  bb[i] = bb[i - 1] + aa[i - 1]+1;

  aa[i]=aa[i]-1;

  }

  try {

  //讀取輸入的檔案

  File ifile = new File(inputFilePath);

  InputStream is = new FileInputStream(ifile);

  //沒有則建立輸出的檔案

  File ofile = new File(outputFilePath);

  //FileOutputStream out=new FileOutputStream(ofile);

  if(!ofile.exists()){

  ofile.createNewFile();

  }

  bw=new BufferedWriter(new FileWriter(ofile,true));

  br = new BufferedReader(new InputStreamReader(is, Charset.forName("gbk")));

  String line = "";

  // 讀取每一行

  while ((line = br.readLine()) != null) {

  String str = "";

  // 迴圈要獲取的長度

  for (int i = 0; i < aa.length; i++) {

  str = str.trim()+T2.substringByte(line, bb[i], aa[i]).trim()+"^";

  } 鄭州人流多少錢

  str = str.substring(0,str.length()-1);

  bw.write(str+"\n");

  }

  } catch (IOException e) {

  e.printStackTrace();

  }finally {

  br.close();

  bw.close();

  }

  }

  }

  第二個class

  package work;

  public class T2 {

  // orignal:需要擷取的每一行 start:從第幾位開始 count:擷取幾位

  public static String substringByte(String orignal, int start, int count) throws Exception {

  // 目標char Pull buff快取區間;

  StringBuffer buff = new StringBuffer();

  char c;

  int len = 0;

  // 遍歷String的每一個Char字元,計算當前總長度

  // 如果到當前Char的的位元組長度大於要擷取的字元總長度,則跳出迴圈返回擷取的字串。

  for (int i = 0; i < orignal.toCharArray().length; i++) {

  c = orignal.charAt(i);

  len += String.valueOf(c).getBytes("GBK").length;

  if (len >= start && len <= start + count) {

  buff.append(c);

  }

  if (len > start + count)

  break;

  }

  // 返回最終擷取的字元結果;

  // 建立String物件,傳入目標char Buff物件

  return new String(buff);

  }

  }

  測試

  package work;

  public class Test {

  public static void main(String[] args) throws Exception {

  int[] aa = {32,20,2,8,5,100,15,1,1,1,1,40,1};

  T1.parseCunegFile("C:\\Users\\Administrator\\Desktop\\1.txt","C:\\Users\\Administrator\\Desktop\\2.txt", aa);

  }

  }


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69945560/viewspace-2667701/,如需轉載,請註明出處,否則將追究法律責任。

相關文章