如何从web中读取android中的文本文件?

前端之家收集整理的这篇文章主要介绍了如何从web中读取android中的文本文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Android的新手。我需要从Web上读取文本文件显示该文本文件。有可能直接在android中查看文本文件。或者如何在android文本视图中阅读和显示文本文件

解决方法

使用DefaultHttpClient httpclient = new DefaultHttpClient();
HttpGet httppost = new HttpGet("http://www.urlOfThePageYouWantToRead.nl/text.txt");
HttpResponse response = httpclient.execute(httppost);
        HttpEntity ht = response.getEntity();

        BufferedHttpEntity buf = new BufferedHttpEntity(ht);

        InputStream is = buf.getContent();


        BufferedReader r = new BufferedReader(new InputStreamReader(is));

        StringBuilder total = new StringBuilder();
        String line;
        while ((line = r.readLine()) != null) {
            total.append(line + "\n");
        }

        TextView.setText(total);

希望这可以帮助!

原文链接:https://www.f2er.com/html/232644.html

猜你在找的HTML相关文章