我正在使用黑莓,我有Jar
个文件jaudiotagger
,但黑莓java.io.File
不可用。是否有可用的Jar
文件?
答案 0 :(得分:1)
通常java.io.File
Java API在BB上不起作用。
请参阅javax.microedition.io.Connector
和javax.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();