第一个文本文件
A.txt
;
asdfghjklqw12345 qwe3456789
asdfghjklqw12345 qwe3456789
第二个文本文件
B.txt
;
|记录 1:被拒绝 - 表 AUTHORIZATION_TBL 的错误,列 AUTH_DATE.ORA-01843:不是有效的月份| |记录 2:被拒绝 - 表 AUTHORIZATION_TBL 的错误,列 AUTH_DATE.ORA-01843:无效的月份|
第三个文本文件
C.txt
;
asdfghjklqw12345 qwe3456789 |记录 1:拒绝 - 表 AUTHORIZATION_TBL 上的错误,列 AUTH_DATE.ORA-01843:不是有效月份|
asdfghjklqw12345 qwe3456789 |记录 2:拒绝 - 表 AUTHORIZATION_TBL 上的错误,列 AUTH_DATE.ORA-01843:不是有效月份|
对于上述情况,我想将两个不同文本文件中的两行合并为一行。我的代码如下
List<FileInputStream> inputs = new ArrayList<FileInputStream>();
File file1 = new File("C:/Users/dell/Desktop/Test/input1.txt");
File file2 = new File("C:/Users/dell/Desktop/Test/Test.txt");
FileInputStream fis1;
FileInputStream fis2;
try {
fis1 = new FileInputStream(file1);
fis2= new FileInputStream(file2);
inputs.add(fis1);
inputs.add(fis2);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
int total = (int) (file1.length() + file2.length());
System.out.println("total length is " + total);
SequenceInputStream sis = new SequenceInputStream(Collections.enumeration(inputs));
try {
System.out.println("SequenceInputStream.available() = "+ sis.available());
byte[] merge = new byte[total];
int soFar = 0;
do {
soFar += sis.read(merge,total - soFar, soFar);
} while (soFar != total);
DataOutputStream dos = new DataOutputStream(new FileOutputStream("C:/Users/dell/Desktop/Test/C.txt"));
soFar = 0;
dos.write(merge, 0, merge.length);
dos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}