我想從服務器上存在的文件中讀取文本,該文件包含文本「hello world」,現在我想在TextView上編寫此文本。我導入了所有必需的軟件包。在此先感謝如何從.txt文件讀取
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tv = new TextView(this);
try {
URL updateURL = new URL("http://--------------------/foldername/hello.txt");
URLConnection conn = updateURL.openConnection();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
ByteArrayBuffer baf = new ByteArrayBuffer(50);
int current = 0;
while((current = bis.read()) != -1){
baf.append((byte)current);
}
final String s = new String(baf.toByteArray());
((TextView)tv).setText(s);
} catch (Exception e) {
}
};
什麼是你所得到的問題? –
http://stackoverflow.com/q/2902689/601868 – Natali
它只是沒有顯示什麼是寫在我的服務器上的文本文件,它沒有顯示任何錯誤..但我沒有得到所需的resutl –