Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

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()); 
        } 
    } 
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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