有没有可用于java.io.File的jar文件?

时间:2013-03-02 08:59:20

标签: blackberry java-me

我正在使用黑莓,我有Jar个文件jaudiotagger,但黑莓java.io.File不可用。是否有可用的Jar文件?

1 个答案:

答案 0 :(得分:1)

通常java.io.File Java API在BB上不起作用。

请参阅javax.microedition.io.Connectorjavax.microedition.io.file.FileConnection的BB API文档。

您需要执行以下操作:

FileConnection fconn = (FileConnection) Connector.open("file:///CFCard/newfile.txt");

// If no exception is thrown, then the URI is valid, but the file may or may not exist.
if (!fconn.exists()) fconn.create(); // create the file if it doesn't exist

OutputStream os = fconn.openOutputStream();

//...

fconn.close();