経験豊富なJavaプロを必要としている(おそらく一目でわかる)アプリがあります。エンジンは完全に機能しますが、データをテキストファイルに保存できません。さらに、エミュレーターでディスクに書き込めないため、ファイル操作をデバッグするたびに、タブレットをテザーし、古いアプリをアンインストールし、apkをコピーして、再インストールする必要があります。
追加した:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
アプリケーションタグの外部のマニフェストに加えて、多数のファイルへの書き込みメソッドを試しました。例外は、(現在の試行に応じて)eaccesであるか、ファイルが存在しないかのいずれかです。私も一日中グーグルで解決策を見つけました。誰かが何か考えを持っていますか?
// this is a canned method that should presumably work
private void writeStringToTextFile(String s, String f){
File sdCard = Environment.getExternalStorageDirectory();
File dir = new File (sdCard.getAbsolutePath());
dir.mkdirs();
File file = new File(dir, f);
try{
FileOutputStream f1 = new FileOutputStream(file,false); //True = Append to file, false = Overwrite
PrintStream p = new PrintStream(f1);
p.print(s);
p.close();
f1.close();
} catch (FileNotFoundException e) {
} catch (IOException e) {
} }
// this is the save method
// it has been modified a little less than a million times today
// some lines may be unnecessary because I have tried several approaches
public void saveSystem(View view){
String s="";
String FILENAME = "data/data/TopExpertAndroid/" + fileName;
FileOutputStream f;
File file = new File(FILENAME);
if(!(file.exists())){
try{
file.createNewFile();}
catch(Exception e){
showSplash(e.getMessage() + e.getCause(), "OK");
return;}}
try{
getFile();
if(fileName.equals("")){}
else{
f = openFileOutput(FILENAME, Context.MODE_PRIVATE);
for(int temp=0; temp<50; temp++){
for(int loop=0; loop<50; loop++){
s += topExpert.nodeBank[temp][loop].activationResponse + "\n";
s += topExpert.nodeBank[temp][loop].display + "\n";
s += topExpert.nodeBank[temp][loop].falseLink + "\n";
s += topExpert.nodeBank[temp][loop].identifier + "\n";
if(topExpert.nodeBank[temp][loop].isTop){
s += "true";}
else{
s += "false";}
s += "\n" + topExpert.nodeBank[temp][loop].trueLink + "\n";}}
writeStringToTextFile(s,FILENAME);
}}
catch(Exception e){
showSplash(e.getMessage() + e.getCause(), "OK");}}