我已将一些文本文件存储在资产目录中,并希望在我的程序中读取它们。 我创建了一个微调器来列出可用的文本文件。选择它已经读取文件。
我使用的xml代码是:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ff000000"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TableLayout
android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:baselineAligned="true"
android:gravity="bottom" >
<TableRow
android:layout_width="wrap_content"
android:padding="10dp" >
<Spinner
android:id="@+id/spinner1"
android:background="#ffffff"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:entries="@array/wm_arrays"
android:prompt="@string/watermark_size"
/>
</TableRow>
<TableRow android:padding="5dp" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="insert"
android:text="Apply" />
</TableRow>
<TableRow android:padding="5dp" >
<TextView
android:id="@+id/displaystring"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="String: "
android:textColor="#ffffff" />
</TableRow>
</TableLayout>
</LinearLayout>
</ScrollView>
我使用的java代码是:
public void insert(View v)抛出IOException { str =(TextView)findViewById(R.id.displaystring);
spinner1 = (Spinner) findViewById(R.id.spinner1);
String res= String.valueOf(spinner1.getSelectedItem());
if(res == "1B"){
input = assetManager.open("wmark_8.txt");
if(res == "2B"){
input = assetManager.open("wmark_16.txt");
}
if(res == "4B"){
input = assetManager.open("wmark_32.txt");
}
if(res == "8B"){
input = assetManager.open("wmark_64.txt");
}
if(res == "512B"){
input = assetManager.open("wmark_4096.txt");
}
if(res == "1024B"){
input = assetManager.open("wmark_8192.txt");
}
if(res == "2048B"){
input = assetManager.open("wmark_16384.txt");
}
int size = input.available();
byte[] buffer = new byte[size];
input.read(buffer);
input.close();
String text = new String(buffer);
str.setText("String: "+text);
}
我得到一个空指针异常,其中实际上意味着不读取输入。 任何人都可以帮助我
答案 0 :(得分:1)
试试这个..
==
总是只比较两个引用
字符串您应该使用.equals("")
来保留所有条件。并使用if else if
if(res.equals("1B")){
input = assetManager.open("wmark_8.txt");
}else if(res.equals("2B")){
input = assetManager.open("wmark_16.txt");
}