1

私はブラックベリーに取り組んでいます。Jarファイルがありますjaudiotaggerが、ブラックベリーでjava.io.Fileは利用できません。Jar利用可能なファイルはありますか?

4

1 に答える 1

1

通常java.io.Fileの Java API は BB では動作しません。

javax.microedition.io.Connectorおよびについては、 BB API ドキュメントを参照してくださいjavax.microedition.io.file.FileConnection

次のようなことをする必要があります:

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();
于 2013-03-02T09:04:48.267 に答える