ฉันได้รับการยกเว้นจากชื่อเมื่อเรียกใช้แอพของฉัน มันคืออะไรมันมีไฟล์. txt พร้อมคำสำหรับเกม Hangman และฉันคิดว่ามีข้อผิดพลาดเกิดขึ้นเมื่อเข้าถึงไฟล์ ไฟล์ของฉัน cuvinte.txt อยู่ใน / assets / นี่คือรหัสของฉัน (ฉันข้ามส่วนเค้าโครง / xml ซึ่งทำงานได้ดี):
public void onCreate() {
// all the onCreate() stuff, then this:
try {
AssetManager am = this.getAssets();
InputStream is = am.open("cuvinte.txt");
InputStreamReader inputStreamReader = new InputStreamReader(is);
BufferedReader b = new BufferedReader(inputStreamReader);
String rand;
while((rand=b.readLine())!=null){
cuvinte.add(rand);
}
} catch (IOException e) {
Toast.makeText(this, "No words file", Toast.LENGTH_LONG).show();
e.printStackTrace();
}
newGame(newG);
}
public void newGame(View view){
Random rand = new Random();
String stringCuvant = cuvinte.get(rand.nextInt(cuvinte.size()));
cuvant.setText("");
System.out.println(stringCuvant);
for(int i = 0; i< stringCuvant.length(); i++){
cuvant.append("_ ");
}
incercari.setText(valIncercari);
}
ฟังก์ชั่น newGame () ถูกเรียกทั้งคู่เมื่อกดปุ่มเกมใหม่และที่จุดเริ่มต้นของกิจกรรมในฟังก์ชั่น onCreate ()
setText()
ฟังก์ชั่น