如何下载 Unicode 文件并将其加载到 TTreeView 中?
我需要使用 idHTTP (String := idHTTP.Get
) 下载 Unicode 格式的 TreeView 文件。下载后,我需要对字符串进行一些操作,然后将其放入 TTreeView 中。我使用的是 Delphi 2010。
s:=form2.idhttp1.Get(Adres+'list.ttt');
....
StrStream:=TStringStream.Create(s,t encoding.Unicode);
form2.TreeView1.LoadFromStream(strstream);
StrStream.Free;
我在 S
或 TreeView1
中看不到 Unicode。如果我尝试下载的不是 list.ttt 而是 list.html,我只会在 S
中看到 Unicode。我需要在 idHTTP 或其他内容中设置什么才能正常工作?
I need to download a file of TreeView in Unicode using idHTTP (String := idHTTP.Get
). After downloading, I need do something with the string and then put it in a TTreeView. I'm using Delphi 2010.
s:=form2.idhttp1.Get(Adres+'list.ttt');
....
StrStream:=TStringStream.Create(s,t encoding.Unicode);
form2.TreeView1.LoadFromStream(strstream);
StrStream.Free;
I cannot see Unicode in S
or TreeView1
. I only see Unicode in S
if I try to download not list.ttt but list.html. What do I need to set in idHTTP or something else to work properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何使其与 TIdHttp 一起使用
不要使用
TStringStream
,而使用TMemoryStream
,这样您就不会获得任何内容的重新编码。例子:How to make it work with TIdHttp
Don't use a
TStringStream
, use aTMemoryStream
so you don't get any re-encodings of the contents. Example:@Michael - 我猜你确实看到了 S 中的数据,但它是 ansiString 而不是 Unicode,对吗?您确定您的源“list.ttt”是 Unicode 吗?您是否尝试过将 s 显式声明为 unicodeString 或使用 unicodeString 函数?只是需要考虑一些事情 - 并不是真正的答案。华泰
@Michael - I gather that you do see data in S, but it is ansiString and not Unicode, correct? Are you sure your source 'list.ttt' is Unicode? Have you tried declaring s explicitely as a unicodeString or using the unicodeString function? Just some things to consider - not really an answer. HTH