在 android 中从 EditText 获取文本

getting text from EditText in android

我编写了这段代码来搜索文本文件中的字符串。问题是,它说即使存在该字符串也找不到。过程是从EditText接收文本,然后开始搜索过程。但它显示每次都找到了字符串。

package com.example.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import android.content.Context;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button button;
    final EditText obedittext;

    button =(Button)findViewById(R.id.button1);
    obedittext =(EditText)findViewById(R.id.editText1);


    button.setOnClickListener(
            new View.OnClickListener()
            {
                boolean textfound;
                public void onClick(View view)
                {
                    textfound = searchtext(obedittext.getText().toString());
                    if(textfound)
                        maketoast(obedittext.getText().toString());
                    else
                        maketoast("Unsuccessfull");
                }
    });

}

protected boolean searchtext(String string) {
    // TODO Auto-generated method stub

    BufferedReader br = null;
    try {

        String sCurrentLine;

        br = new BufferedReader(new InputStreamReader(getAssets().open("mneumo.txt")));

        while ((sCurrentLine = br.readLine()) != null) {
            if(sCurrentLine.equals(string)) {
                return true;
            }
        }
        br.close();


    } catch (IOException e) {
        e.printStackTrace();
    }
        finally{

        }
    return false;
}


private void maketoast(String string) {
    // TODO Auto-generated method stub

    Context context = getApplicationContext();

    Toast toast = Toast.makeText(context, string , Toast.LENGTH_SHORT);
    toast.show();
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}
}

所以当我尝试在代码本身中提供字符串而不是从 edittext 中获取它时,它工作正常。像这样, string = "SPINAL ANESTHESIA AGENTS";

示例文本文件是,

SPINAL ANESTHESIA AGENTS
XYLOCAINE: WHERE NOT TO USE WITH EPINEPHRINE
GENERAL ANAESTHESIA: EQUIPMENT CHECK PRIOR TO INDUCING 

那么我该如何解决这个问题呢?谁能说我为什么会遇到这个问题? 我应该用其他方法来比较字符串吗?

文本文件已正确放置在资产文件夹中。我使用 assetmanager 访问了它。我是 android 开发的新手。

可能是您的 editText 已经包含一些白色 space,要从您的 editText 中获取文本,试试这个:

obedittext.getText().toString().trim();

在您的 searchtext() 方法中,将您的 if 条件替换为:

if(sCurrentLine.equalsIgnoreCase(string))