安卓https超时
我从数据库中获取大量数据,并且必须以表格形式显示数据。请为我提供一种从网络服务获取数据并将其显示在表格中的方法。
I am getting huge data from a database and I have to display the data in a table form. Please provide me a way to get the data from the web service and display it in a table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该从网络获取数据并解析它,然后将所有数据放在地图/列表/数组上,然后根据您的需要创建自定义列表,然后将此数据结构放入列表视图中。
You should get data from web and parse it then put all the data on map/list/arrays then create custom list according to your need then put this data structure in listview.
最好的选择是实际使用 HTTP 客户端或带有缓冲区的 url 连接来读取数据(在 google 上搜索教程和示例)。还要确保设置更大的超时,因为您将提取大量数据。然后根据数据的格式开始解析它,可能将其存储在数据库、Arraylist 或类似的东西中,然后使用适配器创建一个列表来显示数据。
网址连接
希望这有帮助。
Your best bet is to actually use HTTP client or url connection with a buffer for reading to get the data (search on google for tutorials and examples). also be sure to set a larger timeout because you will be pulling a lot of data. then depending on the format of your data start parsing it, maybe store it in a database, Arraylist or something like that and then make a list with an adapter to show the data.
Url connection
hope this helps.