L
lzh1018
Unregistered / Unconfirmed
GUEST, unregistred user!
我是一个出学者,想将一个txt文件导入到listbox中,txt文件中有几十万条甚至上百万条记录。我用以下
代码导入速度很慢,有时还会死机。请教各位老师怎样才能快速的将文件导入到listbox中和快速的将listbox中的数据保存为txt文件?
请帮忙写一下。谢谢!下面是我导入的代码:
opendialog1.Title:= '选择要打开的文件';
opendialog1.Filter:= 'txt file(*.txt)|*.txt';
if opendialog1.execute then
begin
listbox1.Items.LoadFromFile(opendialog1.filename);
end;
代码导入速度很慢,有时还会死机。请教各位老师怎样才能快速的将文件导入到listbox中和快速的将listbox中的数据保存为txt文件?
请帮忙写一下。谢谢!下面是我导入的代码:
opendialog1.Title:= '选择要打开的文件';
opendialog1.Filter:= 'txt file(*.txt)|*.txt';
if opendialog1.execute then
begin
listbox1.Items.LoadFromFile(opendialog1.filename);
end;