将在线文件中的数据拉入本地变量

时间:2014-02-22 23:00:58

标签: java android

如果我有一个包含字符串的在线文本文件,我如何从中提取数据并将其保存到本地String变量中?

例如,假设有一个位于www.myserver.com/File.txt的文件,它只包含一行:“12345”

如何让我的应用程序读取文件,并将“12345”保存为可在应用程序中使用的字符串变量?

1 个答案:

答案 0 :(得分:1)

您必须使用URL类来读取不在您设备中的文件。 像这样:

try {
URL url = new URL("http://www.myserver.com/File.txt");
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String textVal;
while((textVal=in.readLine())!=null){ // saving the text in string variable

 }
}
catch(Exception e){
e.printStackTrace();
}
finally{
in.close(); }