来自 FileConnection 编码的 J2ME DataOutputStream

发布于 2025-01-07 09:55:17 字数 394 浏览 1 评论 0原文

我正在尝试从 FileConnection 将一些数据写入 DataOutputStream。

FileConnection con = (FileConnection)Connector.open("file:///C:/file.txt");
   if (!con.exists())
con.create();
DataOutputStream out = con.openDataOutputStream();
out.writeUTF("some text");
out.close();
con.close();

但我在文件中收到的不是我输入的文本,而是一些垃圾 - 就像编码存在一些问题。
好的,据我所知,它在文件开头添加了 null 和 0xFF 符号。
可能是什么原因?

I'm trying to write some data into DataOutputStream from FileConnection.

FileConnection con = (FileConnection)Connector.open("file:///C:/file.txt");
   if (!con.exists())
con.create();
DataOutputStream out = con.openDataOutputStream();
out.writeUTF("some text");
out.close();
con.close();

But rather than the text I've typed, I receive some garbage in the file - like there are some problems with encoding.
Ok, from what I can see it adds null and 0xFF sign at the start of a file.
What can be the cause?

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

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

发布评论

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

评论(1

场罚期间 2025-01-14 09:55:17

请看我在Java ME中编写文件的方法
我认为您的代码中缺少 Connector.READ_WRITE

private void writeTextFile(String fileName, String text) 
{
    DataOutputStream os = null;
    FileConnection fconn = null;
    try 
    {
        fconn = (FileConnection) Connector.open(fileName, Connector.READ_WRITE);
        if (!fconn.exists())
            fconn.create();
        os = fconn.openDataOutputStream();
        os.write(text.getBytes());
    } catch (IOException e) {
        System.out.println(e.getMessage());
    } finally 
    {
        try 
        {
            if (null != os)
                os.close();
            if (null != fconn)
                fconn.close();
        } catch (IOException e) 
        {
            System.out.println(e.getMessage());
        }
    }
}

Please Look at my method for writing Files in Java ME
I think you are missing Connector.READ_WRITE in your code,

private void writeTextFile(String fileName, String text) 
{
    DataOutputStream os = null;
    FileConnection fconn = null;
    try 
    {
        fconn = (FileConnection) Connector.open(fileName, Connector.READ_WRITE);
        if (!fconn.exists())
            fconn.create();
        os = fconn.openDataOutputStream();
        os.write(text.getBytes());
    } catch (IOException e) {
        System.out.println(e.getMessage());
    } finally 
    {
        try 
        {
            if (null != os)
                os.close();
            if (null != fconn)
                fconn.close();
        } catch (IOException e) 
        {
            System.out.println(e.getMessage());
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文