例えば、私は、Androidデバイスにテキスト「ABC」のテキストファイルを作成したいが、私は唯一のCodenameOneを使ってアンドロイドの外部パブリックルートフォルダにファイルを書き込む方法は?
FileSystemStorage.getInstance().getCachesDir()
が見つかりました:
String filePath=FileSystemStorage.getInstance().getCachesDir()+FileSystemStorage.getInstance().getFileSystemSeparator()+"text.txt";
OutputStream out=FileSystemStorage.getInstance().openOutputStream(filePath);
out.write("abc".getBytes());
は、どのように私はAndroidの外部の公共のパスを取得することができますルートフォルダ(例:写真、音楽、など)?