如何在Android中从文件读取/写入字符串

我想通过获取从EditText输入的文本来将文件保存到内部存储中。然后,我希望同一个文件以字符串形式返回输入的文本,并将其保存到另一个字符串中,以备后用。

这是代码:

package com.omm.easybalancerecharge;

import android.app.Activity;

import android.content.Context;

import android.content.Intent;

import android.net.Uri;

import android.os.Bundle;

import android.telephony.TelephonyManager;

import android.view.Menu;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.EditText;

import android.widget.TextView;

public class MainActivity extends Activity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

final EditText num = (EditText) findViewById(R.id.sNum);

Button ch = (Button) findViewById(R.id.rButton);

TelephonyManager operator = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);

String opname = operator.getNetworkOperatorName();

TextView status = (TextView) findViewById(R.id.setStatus);

final EditText ID = (EditText) findViewById(R.id.IQID);

Button save = (Button) findViewById(R.id.sButton);

final String myID = ""; //When Reading The File Back, I Need To Store It In This String For Later Use

save.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

// TODO Auto-generated method stub

//Get Text From EditText "ID" And Save It To Internal Memory

}

});

if (opname.contentEquals("zain SA")) {

status.setText("Your Network Is: " + opname);

} else {

status.setText("No Network");

}

ch.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

// TODO Auto-generated method stub

//Read From The Saved File Here And Append It To String "myID"

String hash = Uri.encode("#");

Intent intent = new Intent(Intent.ACTION_CALL);

intent.setData(Uri.parse("tel:*141*" + /*Use The String With Data Retrieved Here*/ num.getText()

+ hash));

startActivity(intent);

}

});

}

我提供了一些评论,以帮助你进一步分析我要在哪里完成操作/使用变量的观点。

回答:

希望这对你有用。

写文件:

private void writeToFile(String data,Context context) {

try {

OutputStreamWriter outputStreamWriter = new OutputStreamWriter(context.openFileOutput("config.txt", Context.MODE_PRIVATE));

outputStreamWriter.write(data);

outputStreamWriter.close();

}

catch (IOException e) {

Log.e("Exception", "File write failed: " + e.toString());

}

}

读取文件:

private String readFromFile(Context context) {

String ret = "";

try {

InputStream inputStream = context.openFileInput("config.txt");

if ( inputStream != null ) {

InputStreamReader inputStreamReader = new InputStreamReader(inputStream);

BufferedReader bufferedReader = new BufferedReader(inputStreamReader);

String receiveString = "";

StringBuilder stringBuilder = new StringBuilder();

while ( (receiveString = bufferedReader.readLine()) != null ) {

stringBuilder.append("\n").append(receiveString);

}

inputStream.close();

ret = stringBuilder.toString();

}

}

catch (FileNotFoundException e) {

Log.e("login activity", "File not found: " + e.toString());

} catch (IOException e) {

Log.e("login activity", "Can not read file: " + e.toString());

}

return ret;

}

以上是 如何在Android中从文件读取/写入字符串 的全部内容, 来源链接: utcz.com/qa/431639.html

回到顶部