Dae pessoal,
A classe FileConnection não funciona com o demo do J9 da IBM?
Tô usando MIDP 2.0 em um PocketPC com Windows Mobile 2003.
Testei o seguinte código:
public void createFile() {
try {
FileConnection filecon = (FileConnection) Connector.open("file://Temp/mynewfile.txt");
// Always check whether the file or directory exists.
// Create the file if it doesn't exist.
if(!filecon.exists()) {
filecon.create();
}
filecon.close();
} catch(IOException ioe) {
box.setString(ioe.getMessage());
}
}
Tá dando a seguinte excessão: “Scheme not found: file”
Alguem sabe qual o problema?
Vlw!