-3

我在 android 中创建了一个应用程序,它显示了工厂正在进行的连续单元生产。

应用程序中显示的数据取自 IPAddress。谁能告诉我如何将 IPAddress 中的数据显示到我的应用程序中

4

1 回答 1

2

如果您在 IP 地址上托管网站或网络服务器,您可以在此处阅读如何下载网页内容。如果要显示网页,可以使用WebView

如果您不使用 HTTP 协议,而只是使用 FTP,您可以阅读此处的操作。

编辑

FTP 示例:

   URL url = new URL("ftp://1.2.3.4/test.csv");
   URLConnection urlConnection = url.openConnection();
   InputStream in = new BufferedInputStream(urlConnection.getInputStream());
   String result = "";

   try {
     BufferedReader reader = new BufferedReader(new InputStreamReader(in));
     String line;
     while((line=reader.readLine())!=null){
       result += line;
      }
     yourTextView.setText(result);
    finally {
     in.close();
   }
 }
于 2012-07-29T17:55:07.990 回答