如何将文本文件转换为数据库格式(100分)

  • 主题发起人 主题发起人 jimi_chen
  • 开始时间 开始时间
J

jimi_chen

Unregistered / Unconfirmed
GUEST, unregistred user!
现有文本文件如下:
“11111111111”,1111,1111,11111
“2222222”,2222,2222,2222
....

欲转换为数据库
文本文件中每一行为数据表中的一个记录,每字段由逗号分割

请各位大师给想个办法
 
自己一行一行的读,根据逗号分解,再一个纪录一个纪录导入数据库么,
我就是这么做的,呵呵。
可以自动化的好像没见过。
 
转贴自:Delphi Database FAQ
给出了 Paradox - ASCII,和 ASCII - Paradox 的两个范例:
说明:从 ASCII - Paradox,对 ASCII 表的要求为:
格式化的 TXT 表,和与之对应的 SCH 文件,该文件存放字段信息和表的信息。

Q: How can I export data from a Paradox table to an ASCII file?

A: In those instances when you intend to manipulate the content of
a text file as if it has fields, what you need is a schema file which
describes the layout of the text file. Below is some sample code that
you can consider when writing your program:

{ Here we assume InTable is to be copied to an ASCII file. We use
TBatchMove because it's fast. Also, it will automatically create
the schema file }

procedure TForm1.Button1Click(Sender: TObject);
var
InTable, OutTable: TTable;
BatchMove1: TBatchMove;
begin
try
{ Fix the BDE "wait" cursor: }
Screen.Cursors[crSQLWait] := LoadCursor(0,IDC_WAIT);

InTable := TTable.Create(Application);
with InTable do
begin
DatabaseName := 'AMP1LINKS';
TableName := 'ACFTOWN.MISHAPS'; { Oracle OWNER.TABNAME }
end;

OutTable := TTable.Create(nil);
with OutTable do
begin
DatabaseName := 'c:/delphi/files';
TableName := 'Test.Txt';
TableType := ttASCII;
end; { Note: that is NO need to call CreateTable! }

BatchMove1 := TBatchMove.Create(nil);
with BatchMove1 do
begin
Source := InTable;
Destination := OutTable;
Mode := batCopy;
Execute;
end;

finally
if Assigned(OutTable) then OutTable.Free;
if Assigned(BatchMove1) then BatchMove1.Free;
end;
end;

{ Now assume that a schematic file does exist; the text file itself
may
or may not exist. With the schematic file there we can perform
field level
manipulation
}

procedure TForm1.Button2Click(Sender: TObject);
var
oTxt: TTable;
i: Integer;
f: System.Text;
begin
try
oTxt := nil;

if not FileExists('c:/delphi/files/Test.Txt') then begin
AssignFile(f, 'c:/delphi/files/Test.Txt' );
Rewrite(f);
CloseFile(f);
end;

oTxt := TTable.Create(nil);
with oTxt do begin
DatabaseName := 'c:/delphi/files';
TableName := 'Test.Txt';
TableType := ttASCII;
Open;
end;

with InTable do begin
DisableControls;
if not Active then Open;
First;
while not EOF do begin
oTxt.Insert;
{ In this instance the schematic file described the layout
of the text file; and in this example there is in fact
one to one correspondence between the fields in the table
and the logical fields defined in the Schema ".sch" file }
for i := 0 to FieldCount - 1 do
oTxt.Fields.AsString := Fields.AsString;
oTxt.Post;
Next;
end;
end;
finally
InTable.EnableControls;
if Assigned(oTxt) then oTxt.Free;
end;

end;
 
DELPHI不是有自带了相关的处理方法吗?!1
 
to e.com:
哪里有?
 
请教 e.com
 
将文本文件一行的读入一字符串中s1,
用Pos(',',s1);求出逗号的位置p1,
用Copy(S1,1,p1-1);取出第一个字段的值,
用Delete(s1,1,p1);修改串s1,
重复以上过程,依次取出所有的字段,将各字段写入库中,
重复以上过程,处理所有的记录。
ok?

自动处理的不太好办。
你也可以参照以上方法写一个。

 
BDE有专门的Text驱动。
 






用Delphi实现将纯文本资料转入数据库


  在我们日常工作中,常会碰到这样一个难题:一大堆
收集好的纯文本格式,比较规整的资料怎样才能将它们分
离,转到自己已经建好的数据库中进行管理呢?

  例如,有一段人事档案资料archive.txt,内容如下


  小许男21工程师

  小吴女23助理工程师

  小蔡男22助理工程师

  小牟女22工程师

  要将它转入数据库archive.dbf中,archive.dbf结
构如下:

  姓名,性别,年龄,职称

  怎么办呢?现在通过使用delphi编程,很好地解决了
这个难题。Delphi提供了许多功能强大,丰富的字符处理
函数和过程,常用的有:

  (1)functionLength(S:String):Integer

  //返回串的长度

  (2)functionCopy(S:String;Index,Count:In
teger):String

  //给出一个字符串中串的拷贝

  (3)functionPos(Substr:String;S:String)
;Integer

  //查找子串在字符串中的位置

  (4)ProcedureDelete(VarS:String;Index,Cou
nt:Inte?ger);

  //从一个字符串中去除子串

  利用Delphi提供的已有函数和过程基础上编制自己的
三个函数,实现了纯文本格式资料转入数据库功能。只要
Delphi支持的数据库都可以支持。

  archive.txt中每行数据为一个字符串,字符串中每
个被分割的数据为一个字段,分割每个字段的字符为分割
符,这里是空格,也可以是,、;、#等符号。具体思想
是:先将字符串进行调整,然后把串中每个字符同分割符
比较,将不是分割符的字符追加到MyStr串中,最后得到
一个字段的内容。通过一个循环,就可以将一个字符串分
成几个字段。

  FunctionRegulate(aString,Sepchar:string):
string

  //去掉多余的分割符,规范字符串

  FunctionGetSubStr(varsString:string;SepChar
:String):String;

  //得到字符串中一个子串

  //因要改变参数aString的值,所以将它用var定义


  FunctionGetSubStrNum(aString,SepChar:String
):Integer;

  //计算一个字符串要被分割成几个字段。

  参数:aString是所需分割的一个字符串,

  SepChar是分割符。

  FunctionRegulateStr(aString:String;Sepchar
:String):String;

  var

  i,Num:Integer;

  Flag:Boolean;

  MyStr,TempStr:String;

  begin

  Flag:ΚFalse;//进行标志,去除多余的分割符

  Num:ΚLength(aString);//计算aString串的
长度

  fori:Κ1toNumdo

  begin

  TempStr:ΚCopy(aString,i,1);//取aStrin
g串中的一字符

  ifTempStrΙΛSepCharthen

  begin

  MyStr:ΚMyStr+TempDtr;

  Flag:ΚTrue;

  end

  else

  if(FlagΚTrue)then

  begin

  Mystr:ΚMystr+TempSrt;

  Flag:ΚFalse;

  end;

  end;

  ifMyStr[Length(MyStr)]ΙΛSepCharthen

  MyStr:ΚMyStr+SepChar;

  RegulateSrt:ΚMyStr;

  end;

  FunctionGetSubStr(varaString:String,SepChar
:Strign):String;

  var

  Mysrt:String;

  StrLen:Integer;

  SepCharPso:Integer;

  begin

  StrLen:ΚLength(aString);

  SepCharPos:ΚPos(SepChar,aString);//计
算分割符在子串中的位置

  MyStr:ΚCopy(aString,1,SepCharPos-1);/
/将分割符前所有字符放到mystr串中

  Delete(aString,1,SepCharPos);//除去分割
符和分割符前的子串

  GetSubStr:ΚMyStr;//返回一个字段

  end;

  FunctionTforml.GetSubStrNum(aString:String
;SepChar:String):Integer;

  var

  i:Integer;

  StrLen:Integer;

  Num:Integer;

  begin

  StrLen:ΚLength(aString);

  Num:Κ0;

  fori:Κ1,toStrLendo

  ifCopy(aString,i,1)ΚSepCharthen

  Num:ΚNum+1;

  GetSubSrtNum:ΚNum;

  end:

  有了上面三个函数,现在介绍一下具体的应用:

  1.首先建立一个窗体Forml,加入一个RichEditl(
或Menol),一个按钮Buttonl和一个Tablel,设置Tablel
的属性:

  Tablell.DataBaseΚ′c:ιArchivs′

  Tablell.TableNameΚ′Archive.dbf′

  2.分别加入以下程序:

  ConstSpaceΚ′′

  ProcedureTForml.FormCreate(Sender:Tobject)


  begin

  RichRditl.Lines.LoadFromFile(′Archive.txt
′);

  end;

  ProcedureTForml.Button1Click(Sender:To?bje
ct);

  var

  i,j:Integer;

  MyLine:String;

  begin

  withTableldo

  begin

  Open;

  fori:Κ0toRichEd?itl.Lines.Count-1do

  begin

  MyLine:ΚRegulateStr(Richeditl.Lines[i],
Space);

  forj:Κ1toNumToken(MyLIne,Space)do

  begin

  Append;

  fileds[j-1].aString:ΚGetSubSrt(MyLine,
Space));

  post;

  end;

  end;

  end;

  end;


 
faint,自已做个程序一个段的读不行吗?我也是这样的
 
接受答案了.
 
后退
顶部