0

我想在android的内部存储器中创建文件。然后我必须将其附加到电子邮件中。请帮我。我不知道这个文件存储在哪里。???

4

3 回答 3

0

这是创建和读取文件的代码,

public class ReadNWriteFile extends Activity {

 final String TEST_STRING = new String("Hello Android");
 final String FILE_NAME = "SAMPLEFILE.txt";

 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  TextView tv = new TextView(this);
  fileCreate();
  tv.setText(readFile());
  setContentView(tv);
 }

 private void fileCreate() {
  try {
   OutputStream os = openFileOutput(FILE_NAME, MODE_WORLD_READABLE);
   OutputStreamWriter osw = new OutputStreamWriter(os);
   osw.write(TEST_STRING);
   osw.close();
  } catch (Exception e) {
   Log.i("ReadNWrite, fileCreate()", "Exception e = " + e);
  }
 }

 private String readFile() {
  try {
   FileInputStream fin = openFileInput(FILE_NAME);
   InputStreamReader isReader = new InputStreamReader(fin);
   char[] buffer = new char[TEST_STRING.length()];
   // Fill the buffer with data from file
   isReader.read(buffer);
   return new String(buffer);
  } catch (Exception e) {
   Log.i("ReadNWrite, readFile()", "Exception e = " + e);
   return null;
  }
 }
}

要获得路径,/data/data/package_name/yourFile_Name

于 2012-09-13T12:48:00.643 回答
0

它很容易尝试/遵循这个,我希望它会对你有所帮助

     @Override
     public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     setContentView(R.layout.main);

     buttonSend = (Button) findViewById(R.id.buttonSend);

    textTo = (EditText) findViewById(R.id.editTextTo);
    textSubject = (EditText) findViewById(R.id.editTextSubject);
    textMessage = (EditText) findViewById(R.id.editTextMessage);

    buttonSend.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {

        String to = textTo.getText().toString();
        String subject = textSubject.getText().toString();
        String message = textMessage.getText().toString();

        Intent i = new Intent(Intent.ACTION_SEND);
        i.setType("plain/text");
        File data = null;
        try {
            Date dateVal = new Date();
            String filename = dateVal.toString();
            data = File.createTempFile("Report", ".csv");
            FileWriter out = (FileWriter) GenerateCsv.generateCsvFile(
                    data, "Name,Data1");
            i.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(data));
            i.putExtra(Intent.EXTRA_EMAIL, new String[] { to });
            i.putExtra(Intent.EXTRA_SUBJECT, subject);
            i.putExtra(Intent.EXTRA_TEXT, message);
            startActivity(Intent.createChooser(i, "E-mail"));

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

    }
});
}

 public class GenerateCsv {
public static FileWriter generateCsvFile(File sFileName,String fileContent) {
    FileWriter writer = null;

    try {
        writer = new FileWriter(sFileName);
        writer.append(fileContent);
                     writer.flush();

    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }finally
    {
        try {
            writer.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    return writer;
}

}

在 AndroidManifest.xml 文件中添加这一行:

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-       
  permission>
于 2012-09-13T12:57:05.343 回答
0

通读http://developer.android.com/guide/topics/data/data-storage.html,如果您仍有疑问,请发布更具体的内容。

于 2012-09-13T12:41:43.753 回答