gpt4 book ai didi

java - 使用 Spinner 从 assets 文件夹中访问文件

转载 作者:行者123 更新时间:2023-12-01 13:09:26 28 4
gpt4 key购买 nike

我在 Assets 目录中存储了一些文本文件,并想在我的程序中读取它们。
我创建了一个微调器来列出可用的文本文件。在选择它已读取文件时。

我使用的 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)无效插入( 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);

}

我得到一个空指针异常,其中实际上意味着未读取输入。
谁能帮帮我

最佳答案

试试这个..
==总是只比较两个 引用资料

字符串 你应该使用 .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");
}

关于java - 使用 Spinner 从 assets 文件夹中访问文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23009570/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com