0
こんにちは皆さん、ここに自分のコードを貼り付けました。 Dialog.informには、プレーヤーのスコアである「長い」値が含まれています。私はそれをファイルに書きたい場合は、byteのintに変換する必要があります。私はこのファイルに書き込まれたジャンクの値を取得しています。BlackBerryのファイルに書き込む
Dialog.inform( "Congrats You scored:+(elapsed/34))"の内容を印刷したいと思います。
try
{
FileConnection fc = (FileConnection)Connector.open("file:///SDCard/Rashmi.txt");
// If no exception is thrown, then the URI is valid, but the file may or may not exist.
if (!fc.exists())
{
fc.create(); // create the file if it doesn't exist
}
OutputStream outStream = fc.openOutputStream();
int lp=safeLongToInt(elapsed/34);
outStream.write("Rashmi".getBytes());
outStream.write(lp);
outStream.close();
fc.close();
THanks again ...ジョナサン...それはnworked :)私は今名前とスコアの両方を表示することができます:) –