如何将数据存储在j2me..的文件中?

发布于 2024-10-07 10:53:26 字数 37 浏览 1 评论 0原文

请问谁能告诉我如何将 RMS 数据存储到文件以及如何修改它?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人爱我别走 2024-10-14 10:53:26

您可以使用此代码将数据写入文件中。

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()); 
        } 
    } 
}

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()); 
        } 
    } 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文