It's perfectly described here how to do it, the only problem: He doesnt know the function openFileOutput();

private void saveSettingsFile() {
          String FILENAME = "settings";
          String string = "hello world!";

          FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE); //openFileOutput underlined red
          try {
            fos.write(string.getBytes());
            fos.close();
          } catch (IOException e) {
            Log.e("Controller", e.getMessage() + e.getLocalizedMessage() + e.getCause());
          }
}

Those are the relevant packages I imported:

import java.io.FileOutputStream;
import java.io.IOException;
import android.content.Context;
link|improve this question

69% accept rate
Can you share logcat error output? – Konstantin Burov Sep 2 '10 at 14:35
I just noticed that "openFileOutput" is underlined red. Eclipse asked me to create a so-named method in my class, which I accidently did. Now I removed this method stub and "openFileOutput" is underlined red again. – OneWorld Sep 2 '10 at 14:44
@Konstantin: Its more a logical problem than. So logcat doesnt help yet. Right know I cant even compile it. – OneWorld Sep 2 '10 at 14:51
So extend context of the code, can you post whole method? – Konstantin Burov Sep 2 '10 at 14:54
I extended it above. It's just a method of my classe. For my opionion this should work with just those 5 lines of code (according to the link) – OneWorld Sep 2 '10 at 14:57
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

Have a look at this example of using a FileOutputStrem from the Examples on dev.android.com. It should give you an idea of how to use it correctly.

link|improve this answer
Thank u. I will look into it. however, I still would prefer to get this 5 lines working. I mean the author of the document I referred to above cant be fundamentally wrong. – OneWorld Sep 2 '10 at 15:09
2  
you need to call openFileOutput on a context. Try context.openFileOutput() – Tom Medley Sep 2 '10 at 15:13
Ok, good suggestion. However I dont have the variable or object "context". How do I create or get it? – OneWorld Sep 2 '10 at 15:19
Your context is your Activity. If this code is in a View then all views are created with a context as an argument. If this code is in another class you'll have to pass in the context as an argument as you would with a View. – Tom Medley Sep 2 '10 at 15:30
In which class the method is placed? The openFileOutput should be invoked on Context instance (i.e. activity). – Konstantin Burov Sep 2 '10 at 15:43
show 7 more comments
feedback

Class within which this method is declared, is defined as "Static". thats why it is throwing error. Remove static from the class definition and bingo...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.