Android Studio:将URL从URL保存到数组

时间:2016-01-09 01:42:53

标签: java android arrays android-studio

我正在尝试让Android Studio将URL中的文本文件读入字符串数组。然后,使用Picasso中的URLS显示一个简单的图库。我在实现这一目标的尝试如下。

我的GrabData.java脚本:

public class GrabData
{
static public String[] LIST = {};
public static void main(String[] args)
{

    ReadFile rf = new ReadFile();

    // The text file.
    String filename = "http://www.example.com/my/website/directory/thefile.txt";

    try
    {
        String[] LIST = rf.readLines(filename);

        for (String line : LIST)
        {
            System.out.println(LIST);
        }
    }
    catch(IOException e)
    {
        System.out.println("ReadFile : Unable to create "+filename+": "+e.getMessage());
    }
  }
}

我的ReadFile.java脚本:

public class ReadFile extends Activity
{
public String[] readLines(String filename) throws IOException
{
    FileReader fileReader = new FileReader(filename);

    BufferedReader bufferedReader = new BufferedReader(fileReader);
    List<String> lines = new ArrayList<String>();
    String line = null;

    while ((line = bufferedReader.readLine()) != null)
    {
        lines.add(line);
    }

    bufferedReader.close();

    return lines.toArray(new String[lines.size()]);
  }
}

但是,当我尝试在文件名字符串中使用URL时,它不会在库中显示任何能够从数组加载的图像。我猜这个方法不能读取URLS。如果有人对如何获得这个有任何帮助,我们非常感激。

1 个答案:

答案 0 :(得分:0)

import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    new MyAsyncFileReader().execute("http://www.example.com/my/website/directory/thefile.txt");

}

public static class MyAsyncFileReader extends AsyncTask<String, Void,String []>
{

    @Override
    protected String [] doInBackground(String... params){
        String url= params[0];
        List<String> lines = new ArrayList<String>();
        try{
            URL u= new URL(url);

            HttpURLConnection conn= (HttpURLConnection) u.openConnection();
            InputStream is= conn.getInputStream();

            BufferedReader br =new BufferedReader(new      InputStreamReader(is));
            String line=null;
            while((line=br.readLine())!=null){
                lines.add(line);

            }
            br.close();
        }catch(Exception e){

        }
        return lines.toArray(new String[lines.size()]);

    }

    @Override
    protected void onPostExecute(String[] strings) {
        //You will get your string array result here .
        // do whatever operations you want to do

         for(int i=0;i<strings.length;i++){
            Log.e("LOG", strings[i]);
        }
    }

}

}

这就是它在My Activity中的样子。在你的活动中使用类似的东西。

我的编辑:通过其他活动读取MyAsyncFileReader类的public和static。