私はブラックベリーに取り組んでいます。Jar
ファイルがありますjaudiotagger
が、ブラックベリーでjava.io.File
は利用できません。Jar
利用可能なファイルはありますか?
質問する
373 次
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 に答える