res/raw フォルダーにContinent.txt
ファイルを配置しました。中には以下のものがあります。
<div class="continents">
<a href="#US">US</a>
<a href="#CA">Canada</a>
<a href="#EU">Europe</a>
</div>
jsoup を使用して米国、カナダ、ヨーロッパのテキストを解析できますが、それらを TextView に表示すると、1 行で表示されます。出力は次のようになります。
米国 カナダ ヨーロッパ
私は出力がこのようになりたいです。
私たち
カナダ
ヨーロッパ
これは私のコードです。
package com.example.readfile;
import java.io.InputStream;
import java.util.ArrayList;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import android.os.AsyncTask;
import android.os.Bundle;
import android.app.Activity;
import android.content.res.Resources;
import android.widget.TextView;
public class MainActivity extends Activity {
TextView txtContinent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
txtContinent = (TextView) findViewById(R.id.textView1);
new MyTask().execute();
}
class MyTask extends AsyncTask<Void, Void, ArrayList<String>> {
ArrayList<String> arr_linkText = new ArrayList<String>();
@Override
protected ArrayList<String> doInBackground(Void... params) {
Document doc;
try {
Resources res = getResources();
InputStream in_s = res.openRawResource(R.raw.continent);
byte[] b = new byte[in_s.available()];
in_s.read(b);
doc = Jsoup.parse(new String(b));
Element link = doc.select("a").first();
String text = doc.body().text();
arr_linkText.add(text);
} catch (Exception e) {
// e.printStackTrace();
txtContinent.setText("Error: can't open file.");
}
return arr_linkText; // << retrun ArrayList from here
}
@Override
protected void onPostExecute(ArrayList<String> result) {
for (String temp_result : result) {
txtContinent.append(temp_result + "\n");
}
}
}
}
ファイルを1行ずつ読む方法がわかりません。誰かが説明してくれることを願っています。ありがとうございました!