我需要使用 idHTTP ( String := idHTTP.Get
) 下载 Unicode 格式的 TreeView 文件。下载后,我需要对字符串进行一些处理,然后将其放入 TTreeView 中。我正在使用德尔福 2010。
s:=form2.idhttp1.Get(Adres+'list.ttt');
....
StrStream:=TStringStream.Create(s,t encoding.Unicode);
form2.TreeView1.LoadFromStream(strstream);
StrStream.Free;
S
我在或中看不到 Unicode TreeView1
。S
如果我尝试下载的不是 list.ttt 而是 list.html,我只会看到 Unicode 。我需要在 idHTTP 或其他东西中设置什么才能正常工作?