Android 에서 txt 를 읽 고 줄 별로 읽 는 인 스 턴 스 설명
public class MainActivity extends AppCompatActivity {
private TextView textView,textView2,textView3;
private Button click;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = (TextView) findViewById(R.id.textView);
textView2 = (TextView) findViewById(R.id.textView2);
textView3 = (TextView) findViewById(R.id.textView3);
String s1 = Txt().get(0);// Map get (key = 0) value
String s2 = Txt().get(1);
String s3 = Txt().get(2);
textView.setText(s1);
textView2.setText(s2);
textView3.setText(s3);
}
public Map<Integer, String> Txt() {
// Map
String filePath = "/sdcard/sdl_log.txt";//
Map<Integer, String> map = new HashMap<Integer, String>();
try {
File file = new File(filePath);
int count = 0;// key
if (file.isFile() && file.exists()) { //
InputStreamReader isr = new InputStreamReader(new FileInputStream(file));
BufferedReader br = new BufferedReader(isr);
String lineTxt = null;
while ((lineTxt = br.readLine()) != null) { //
if (!"".equals(lineTxt)) {
String reds = lineTxt.split("\\+")[0]; //java
map.put(count, reds);// map 0,value0;1,value2
count++;
}
}
isr.close();
br.close();
}else {
Toast.makeText(getApplicationContext(),"can not find file",Toast.LENGTH_SHORT).show();//
}
} catch (Exception e) {
e.printStackTrace();
}
return map;
}
}
이상 의 안 드 로 이 드 는 txt 를 읽 습 니 다.줄 에 따라 읽 는 인 스 턴 스 설명 은 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 는 각각 바이트 흐름, 문자 흐름, 바 이 너 리 를 통 해 파일 을 읽 는 코드 입 니 다.공 사 를 하 는 과정 에서 비교적 좋 은 내용 세그먼트 를 백업 합 니 다. 아래 의 자 료 는 자바 가 각각 바이트 흐름, 문자 흐름, 바 이 너 리 를 통 해 파일 을 읽 는 내용 으로 어린이 들 에 게 용도 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.