我想将一个简单的文本文件逐行读入一个数组。我无法将此文件读入数组。无论我做什么,它都对我不起作用。
String myUrlTextFile = "www.puzzlers.org/pub/wordlists/pocket.txt";
try
{
URL myText= new URL(myUrlTextFile);
Scanner s = new Scanner(myText.openStream());
while (s.next() != null)
{
mylistArray.add(s.next());
}
mainListView.setAdapter(listAdapter);
}
catch(IOException ex)
{
ex.printStackTrace();
}