bbed_recover:恢復資料塊資料庫(續)

imlihj2007發表於2011-11-02

昨天晚上寫了個這個小工具,發現最後的檔案格式的轉換非常的慢,所以經過一個晚上的思考 用java代替SHELL速度快了很多多:

1 編寫JAVA並測試透過

/**
* @(#)test.java
*
*
* @author
* @version 1.00 2011/11/2
*/
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.Writer;
import java.io.*;
import java.io.FileWriter;
import java.io.Writer;


public class Test {

/**
* Creates a new instance of test.
*/
public static void Testfilewriter(String filename) {
FileReader fr = null;
FileWriter fw=null;
try {
fr = new FileReader(filename);
fw= new FileWriter(filename+"_data");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
System.out.println(e.getMessage());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

BufferedReader bf=new BufferedReader(fr);
BufferedWriter bw=new BufferedWriter(fw);
String str=null;
StringBuffer strb = null;
String tempStr="cols";
String tempStrout="";
try {
while((str=bf.readLine())!=null){
if (str.equals(tempStr)){
fw.write(tempStrout);
fw.write("rn");
tempStrout = null;
}
int index = str.indexOf(":");
tempStrout = tempStrout+"|"+str.substring(index+1);
}
} catch (IOException e) {
System.out.println(e.getMessage());


}

}

public static void main(String[] args) {
String fileName = "bbed_tmp";
Testfilewriter(fileName);
}
}
2 上傳到linux伺服器

3 編譯gcj -o ReadBlock --main=ReadBlock ReadBlock.java

4測試與執行 還是蠻快的...接著有時間就好好的做這個小工具了

[@more@]續

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

相關文章