please can anyone tell me how to store the RMS data to file and how to modify it?

link|improve this question
feedback

1 Answer

You can use this code for write the data in a file.

private void writeTextFile(String fName, String text) { 
    DataOutputStream dos = null; 
    FileConnection fconn = null; 
    try { 
        fconn = (FileConnection) Connector.open(fName, Connector.READ_WRITE); 
        if (!fconn.exists()) 
            fconn.create();
        dos = fconn.openDataOutputStream(); 
        dos.write(text.getBytes()); 
    } catch (IOException e) { 
        System.out.println(e.getMessage()); 
    } finally { 
        try { 
            if (dos != null) 
            dos.close(); 
            if (fconn != null) 
                fconn.close(); 
        } catch (IOException e) {
            System.out.println(e.getMessage()); 
        } 
    } 
}
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.