Android list files in private app storage - Stack Overflow

文章推薦指數: 80 %
投票人數:10人

Private folder on Internal/external storage on android - Stack ... Home Public Questions Tags Users Collectives ExploreCollectives FindaJob Jobs Companies Teams StackOverflowforTeams –Collaborateandshareknowledgewithaprivategroup. CreateafreeTeam WhatisTeams? Teams CreatefreeTeam CollectivesonStackOverflow Findcentralized,trustedcontentandcollaboratearoundthetechnologiesyouusemost. Learnmore Teams Q&Aforwork Connectandshareknowledgewithinasinglelocationthatisstructuredandeasytosearch. Learnmore Androidlistfilesinprivateappstorage AskQuestion Asked 9years,1monthago Active 8years,11monthsago Viewed 5ktimes 6 1 I'mdevelopingAndroidapp,andIneedsaveandloadfunctions. Iwanttosaveimportantdatainprivateappstoragewiththisfunction: publicstaticvoidsave(Objectfile,StringfileName,Contextcontext) throwsIOException,FileNotFoundException{ FileOutputStreamfos=context.openFileOutput(fileName, context.MODE_PRIVATE); ObjectOutputStreamoos=newObjectOutputStream(fos); oos.writeObject(file); oos.flush(); oos.close(); fos.close(); System.out.println(TAG+":Filesavedsuccessful!"); } I'vealsowrittenmethodforloadingdata. ThisworksbecauseIknowtheexactnameoffile. Ineednowtododynamicsavingoffiles,withdynamicgenerationofnames. HowcanIlistfilessavedinpricateappstorage? SoIcanloadexactone? androidloadsave Share Follow askedOct21'12at8:36 VeljkoVeljko 1,83366goldbadges2727silverbadges5656bronzebadges Addacomment  |  1Answer 1 Active Oldest Votes 10 Hereyougo! Filedir=getFilesDir(); File[]subFiles=dir.listFiles(); if(subFiles!=null) { for(Filefile:subFiles) { //Hereiseachfile } } Share Follow editedDec6'12at23:46 JasonOlson 3,53622goldbadges2020silverbadges2424bronzebadges answeredOct21'12at8:49 GiviGivi 3,26333goldbadges1919silverbadges2323bronzebadges 6 It'sreturning0files...HowIcancheckisitmysavedfilesavedatall?:)Iget"Filesavesuccessfullog" – Veljko Oct21'12at9:14 I'vecheckedfileisthere...andIsuccessfullyloadeditbackinapp. – Veljko Oct21'12at9:24 That'sbecauseyousavethefilestodifferentdirthanmyexample.Ieditedmyanswer. – Givi Oct21'12at9:36 Thoughitwouldprobablyreturnapathtothefileitself-you'llneedtogetthedir'spathfromthatString – Givi Oct21'12at9:38 I'mnotsurewhat'sthedirpath.Canyoufigureitoutfromsavefunction?imtryingcom.myapp.example/data – Veljko Oct21'12at9:45  |  Show1morecomment YourAnswer ThanksforcontributingananswertoStackOverflow!Pleasebesuretoanswerthequestion.Providedetailsandshareyourresearch!Butavoid…Askingforhelp,clarification,orrespondingtootheranswers.Makingstatementsbasedonopinion;backthemupwithreferencesorpersonalexperience.Tolearnmore,seeourtipsonwritinggreatanswers. Draftsaved Draftdiscarded Signuporlogin SignupusingGoogle SignupusingFacebook SignupusingEmailandPassword Submit Postasaguest Name Email Required,butnevershown PostYourAnswer Discard Byclicking“PostYourAnswer”,youagreetoourtermsofservice,privacypolicyandcookiepolicy Nottheansweryou'relookingfor?Browseotherquestionstaggedandroidloadsaveoraskyourownquestion. TheOverflowBlog Whoownsthisoutage?BuildingintelligentescalationchainsformodernSRE Podcast395:Whoisbuildingcloudsfortheindependentdeveloper? FeaturedonMeta Nowlive:Afullyresponsiveprofile Reducingtheweightofourfooter TwoBornottwoB-Farewell,BoltClockandBhargav! Related 2088 IsthereawaytorunPythononAndroid? 2031 HowtolazyloadimagesinListViewinAndroid 4135 Howdoyouclose/hidetheAndroidsoftkeyboardprogrammatically? 3057 HowtostopEditTextfromgainingfocusatActivitystartupinAndroid 1960 "Debugcertificateexpired"errorinEclipseAndroidplugins 2942 IsthereauniqueAndroiddeviceID? 2137 Whatis'Context'onAndroid? 0 Savingint/byte/stringdatatypesinAndroid 3843 ProperusecasesforAndroidUserManager.isUserAGoat()? HotNetworkQuestions Whydopeoplecaresomuchabout'linearresponsetheory'? Whydon'tsmallaircraftproducetyresmokewhenlanding,butbigaircraftdo? Whatdoes'dosteakandchips'mean? IsitpossibletopropulsivelylandanSRB? WhyistheSecondAmendmentstructureddifferentlyfromallotheramendments? Harmonicdivisornumbers RuyLopez-whydoesBlacknottakee4? TheWitch'sBroom CollectingalternativeproofsfortheoddityofCatalan Keymapthatisdependentonthebuffer Isitbadpracticecreate"alias"variablestonotuseglobalsorargumentswithlongnamesinamethod? HowtoannotatestaffwithbeatnumbersinLilypond? Usinga2TBSSDona2016MacBookPro whatcould"dippingfromthecompany'scoffers"possiblymean? WhyisFIPS140-2compliancecontroversial? Whatdothescammersdowhentheygetaccesstosomeone'sonlinebanking? HowdoIgettothisislandinthemiddleofnowhereinthenorth-eastsectionofthemap? Isitharmfulltoheatawhetstone compassandstraightedgeinacientGreek? Questionabouttheabbreviationfor2instrumentsinanorchestrascore Datastructurethatsupportsinsertionandfastrandomelementlookup Dostateswithinfiniteaverageenergymakesense? Howcananoceanofseawaterbehavelikehoneywithoutchangingthechemistry? ShouldImakeequallysizedsamplesfortheMann-WhitneyUtestiforiginallyIhaveunequalsamplesizes morehotquestions Questionfeed SubscribetoRSS Questionfeed TosubscribetothisRSSfeed,copyandpastethisURLintoyourRSSreader. default Yourprivacy Byclicking“Acceptallcookies”,youagreeStackExchangecanstorecookiesonyourdeviceanddiscloseinformationinaccordancewithourCookiePolicy. Acceptallcookies Customizesettings  



請為這篇文章評分?