gpt4 book ai didi

java - 是否可以在 Blackberry 中使用 J2ME 将 BBM 聊天保存在文本文件中

转载 作者:行者123 更新时间:2023-12-02 00:34:31 24 4
gpt4 key购买 nike

据我所知,我可以使用javax.microedition.io.file.FileConnection来达到所需的目的。但我需要一个例子。为什么我不能使用java.io.FileOutputStream,而是使用这段代码:

FileOutputStream fout;      

try
{
// Open an output stream
fout = new FileOutputStream ("myfile.txt");

// Print a line of text
new PrintStream(fout).println ("I'm making an app on android!");

// Close our output stream
fout.close();
}
// Catches any error conditions
catch (IOException e)
{
System.err.println ("Unable to write to file");
System.exit(-1);
}

请解释一下。谢谢

最佳答案

您发布的片段使用 JavaSE 类,在 BlackBerry 中不可用。

你需要这样做:

FileConnection fconn = (FileConnection)Connector.open("file:///CFCard/myfile.txt");
OutputStream os = fconn.openOutputStream();
os.write("I'm making an app on BB!".getBytes());
os.flush();
os.close();
fconn.close();

我跳过了异常控制以使代码片段不那么冗长,但您必须像往常一样关心它们。

关于java - 是否可以在 Blackberry 中使用 J2ME 将 BBM 聊天保存在文本文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8173102/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com