お時間をいただきありがとうございます。私のアプリが行mycode = "UTF-8"
で実行され、キャッチに直接ジャンプすると、文字列 mycode に値を設定するだけなので、非常にhead[0]
奇妙ですhead[1]
。そして、そのため、状態は不満であるはずです.しかし、実際には、アプリはまだ文を実行しています.理由がわかりません。助けていただければ幸いです.head[2]
-17``-69
-65
mycode = "UTF-8"
私のコードは以下です:
package com.example.tyghgy;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import android.util.Log;
public class MyTxt {
private BufferedReader br = null;
InputStream in = null;
public MyTxt(){
File f=null;
f= new File("/sdcard/s.txt");
String sssss;
try {
in = new BufferedInputStream(new FileInputStream(f));
sssss = get_code();
} catch (FileNotFoundException e3) {
// TODO Auto-generated catch block
e3.printStackTrace();
}
try {
br = new BufferedReader(new InputStreamReader(in, "utf-8"));
} catch (UnsupportedEncodingException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
private String get_code(){
String mycode = "";
byte[] head = new byte[3];
try{
in.read(head);
if (head[0] == -1 && head[1] == -2 )
mycode = "UTF-16";
if (head[0] == -2 && head[1] == -1 )
mycode = "Unicode";
if(head[0]==-17 && head[1]==-69 && head[2] ==-65)
mycode = "UTF-8";
return mycode;
}catch (Exception e) {
// TODO: handle exception
Log.v("sssssssssss", e.getMessage());
mycode = e.getMessage();
return mycode;
}
}
}