How to access data/data folder in Android device? - Stack ...

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

Viewing private files created by an android app - Stack Overflow 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 Howtoaccessdata/datafolderinAndroiddevice? AskQuestion Asked 9years,1monthago Active 11monthsago Viewed 747ktimes 370 179 IamdevelopinganappandIknowmydatabase*.dbwillappearindata/data/com.****.*** IcanaccessthisfilefromAVDinEclipsewithhelpofsqlitemanager ButIcan'taccessthisfileinmyAndroidphone. IgoogleditanditsaysIneedtorootmyphonetodoit,butIdon'twanttodothat. HowcanIaccessmydata/data/.....directoryinmyAndroidphone"withoutrootingit"? CanIchangeuserpermissionsforthedirectorydata/data.....withoutrootingit? androidandroid-emulatorandroid-sqliteadb Share Follow editedDec14'20at10:57 phrogg 76911goldbadge1212silverbadges2525bronzebadges askedOct22'12at6:56 NaveenPrincePNaveenPrinceP 4,28233goldbadges1414silverbadges1717bronzebadges 6 1 douhavedatabase.dbfile..??? – AmitPrajapati Oct22'12at7:01 siamusingdatabase-"openOrCreateDatabase(....)" – NaveenPrinceP Oct22'12at16:36 5 Youwilldefinitelyneedtorootthephonefirstofall.Thenyouwillneedacompetentfilemanagerappyoucanuse.ASTROfilemanagerispopularbutithasnorootaccesssupportsoit'suselessforpowerusers.YoushouldbeabletouseESFileExplorerorFileExpert.Ihaverecentlyhadproblemsviewing/data/dataorotherprotectedfolderswithESFileExplorerandhaveprettymuchabandonedit,andIamnowusingFileExpert.Theybothrequirethatyougointosettingsandenablerootexploreroption(andsometimesalsomountthefilesystemaswritable).Soyouneedtodothatfirst. – Samir Jul5'13at10:33 Thisisnotprogrammingrelatedquestionnoranswers. – SkyWalker Apr3'15at7:33 stackoverflow.com/a/18472135/1778421 – AlexP. Oct3'16at3:40  |  Show1morecomment 18Answers 18 Active Oldest Votes 421 Accessingthefilesdirectlyonyourphoneisdifficult,butyoumaybeabletocopythemtoyourcomputerwhereyoucandoanythingyouwantwithit. Withoutrootingyouhave2options: Iftheapplicationisdebuggableyoucanusetherun-ascommandinadbshell adbshell run-ascom.your.packagename cp/data/data/com.your.packagename/ AlternativelyyoucanuseAndroid'sbackupfunction. adbbackup-noapkcom.your.packagename Youwillnowbepromptedto'unlockyourdeviceandconfirmthebackupoperation'.It'sbestNOTtoprovideapassword,otherwiseitbecomesmoredifficulttoreadthedata.Justclickon'backupmydata'.Theresulting'backup.ab'fileonyourcomputercontainsallapplicationdatainandroidbackupformat.Basicallyit'sacompressedtarfile.ThispageexplainshowyoucanuseOpenSSL'szlibcommandtouncompressit. Youcanusetheadbrestorebackup.dbcommandtorestorethebackup. Share Follow editedJun12'16at8:33 answeredJul26'13at8:38 THelperTHelper 14.6k66goldbadges6060silverbadges9797bronzebadges 23 20 adbbackup-f\location\on\local\drive-noapkapp.package.nameworkedformewithoutroot – theblang Dec4'13at16:28 28 Usethiscommandtouncompressyourbackupfile:ddif=backup.abbs=24skip=1|opensslzlib-d>backup.tar – Human Mar17'14at18:27 12 InOption1,howdoItellthecpcommandtosavethemtomylaptop(Mac)?IfyougiveaWinexample,I'dliketoknowtoo,andwilljusttranslateit.Thanks. – Gerard Sep3'14at4:20 12 Important:Runningadbbackup-noapkcom.your.packagenamewillsavetheabfileonthecurrentdirectory,somakesureyouhavenavigatedintherightdirectory(e.g.cdDesktop..) – MenelaosKotsollaris May20'15at15:12 18 Notethatthebackupapproachwillyieldanemptybackupifyourapphasdisabledbackupsviaandroid:allowBackup="false"inthemanifest. – Tom May1'19at1:24  |  Show18morecomments 165 IfyouareusingAndroidStudio3.0orlaterversionthenfollowthesesteps. ClickView>ToolWindows>DeviceFileExplorer. Expand/data/data/[package-name]nodes. Youcanonlyexpandpackageswhichrunsindebugmodeonnon-rooteddevice. Share Follow editedMay20'17at18:39 answeredMay20'17at18:24 ShahidulShahidul 2,64911goldbadge1919silverbadges2020bronzebadges 9 1 icantseeanythinginthisdock.andsaymenothingshow.doyouknowwhatstheproblem? – MahdiAzadbar Jun25'17at8:34 4 Thisworksonlyindebug-mode,notforrelease-builds – itinance Aug2'17at8:35 Thankyouforshowingtheno-pitawaytolookintothefilesystem! – Lensflare Feb20'18at17:03 2 thisisawesome.WishIhadknownthisawhileago. – checkmate711 Sep12'18at18:40 1 Forthosewondering,thepathisusuallysomethinglike:/data/user/0/[package.name] – SmartyP Dec24'18at10:47  |  Show4morecomments 57 Youcouldalsotryfetchingthedbusingrootexplorerapp.Andifthatdoesnotworkthenyoucantrythis: Opencmd Changeyourdirectoryandgointo'Platformtools' Type'adbshell' su Press'Allow'ondevice chmod777/data/data/data/data/data/com.application.package/data/data/com.application.package/* OpenDDMSviewinEclipseandfromthereopen'FileExplorer'togetyourdesiredfile Afterthisyoushouldbeabletobrowsethefilesontherooteddevice. Share Follow editedMay2'18at15:54 answeredOct22'12at7:17 SherazAhmadKhiljiSherazAhmadKhilji 8,12288goldbadges4848silverbadges8383bronzebadges 9 3 ithinkrootexploreappworksonlyforrootedphones.Iwilltry2ndmethod – NaveenPrinceP Oct22'12at16:40 6 Unabletochmod/data:Operationnotpermitted – bofredo Aug22'13at15:47 @bofredoIthinkitsbecauseyourphoneisn'trooted.youshouldrootyourphoneandthentrythis – SherazAhmadKhilji Feb3'14at6:42 1 @mahemadhiyesyouwouldprobablyhavetorunthiscommandmanuallyforeverydirectoryasalldirectorieshavepermissionsthatareprivatetothem. – SherazAhmadKhilji Mar24'14at6:44 1 @VivekChavdayuptheyrequirerootedphone – SherazAhmadKhilji May2'18at15:53  |  Show4morecomments 21 Todoanyoftheabove(i.e.accessprotectedfoldersfromwithinyourphoneitself),youstillneedroot.(Thatincludeschangingmount-permissionsonthe/datafolderandaccessingit) Withoutroot,accessingthe/datadirectlytoreadexceptfromwithinyourapplicationviacodeisn'tpossible.Soyoucouldtrycopyingthatfiletosdcardorsomewhereaccessible,andthen,youshouldbeabletoaccessitnormally. Rootingwon'tvoidyourwarrantyifyouhaveadeveloperdevice.I'msorry,thereisn'tanyotherwayAFAIK. Share Follow editedOct5'13at16:07 answeredOct22'12at7:03 AnirudhRamanathanAnirudhRamanathan 44.6k2121goldbadges122122silverbadges180180bronzebadges 8 iamnotusingandevelopersdevice.MineisXperiaU – NaveenPrinceP Oct22'12at16:29 caniedituserpermissionofdatafolderwithchmodecommands? – NaveenPrinceP Oct22'12at16:37 Thewholepartitionismountedasread-only.I'dsayyourbestbetwouldbeadbpullasmentionedinthebelowanswer. – AnirudhRamanathan Oct22'12at16:39 Iispossibleiftheapplicationallowsit.Thedirectoriesallhavexpermissionforeverybody(butnorforeverybody,soyouhavetoknowthepath).Thanitdependsonwhethertheapplicationmadethefileworldaccessibleornot.Somefilesare,mostarenot. – JanHudec Oct4'13at9:08 Firstyousayit'simpossibletoread,thenyousuggesttocopythefileelsewhere.But,howtocopyafilewithoutreadingitinthefirstplace?Ithinkthisanswer'sbuggy. – untill Jun10'15at12:57  |  Show3morecomments 13 Theeasiestway(justonesimplestep)topullafilefromyourdebuggableapplicationfolder(let'ssay/data/data/package.name/databases/file)onanunrootedAndroid5.0+deviceisbyusingthiscommand: adbexec-outrun-aspackage.namecatdatabases/file>file Share Follow answeredAug7'15at15:07 AlexP.AlexP. 27.8k1616goldbadges109109silverbadges158158bronzebadges 0 Addacomment  |  13 Openyourcommandprompt ChangedirectorytoE:\Android\adt-bundle-windows-x86_64-20140702\adt-bundle-windows-x86_64-20140702\sdk\platform-tools Enterbelowcommands adb-dshell run-ascom.your.packagenamecatdatabases/database.db>/sdcard/database.db Changedirectorytocd/sdcardtomakesuredatabase.dbisthere. adbpull/sdcard/database.dborsimplyyoucancopydatabase.dbfromdevice. Share Follow editedApr30'16at17:32 LeosLiterak 7,8781313goldbadges6363silverbadges124124bronzebadges answeredSep11'14at10:44 IsuraAmarasingheIsuraAmarasinghe 76277silverbadges1212bronzebadges 1 Worksperfectforme.Thanks!Butinmycase,thedatabasefilenamehasno.dbextension. – technik Apr17'17at17:53 Addacomment  |  10 UseFileExplorerineclipse.SelectWindows=>ShowView=>Other...=>FileExplorer. Ananotherwayispullthefileviaadb: adbpull/system/data/data//databases//sdcard Share Follow answeredOct22'12at7:05 NguyenMinhBinhNguyenMinhBinh 22.3k3030goldbadges109109silverbadges159159bronzebadges 0 Addacomment  |  6 TobackupfromAndroidtoDesktop Opencommandlinecmdandrunthis: adbbackup-fC:\Intel\xxx.ab-noapkyour.app.package. DonotenterpasswordandclickonBackupmydata. MakesurenottosaveondriveCroot.Youmaybedenied. ThisiswhyIsavedonC:\Intel. Toextractthe*.abfile Gohereanddownload:https://sourceforge.net/projects/adbextractor/ Extractthedownloadedfileandnavigatetofolderwhereyouextracted. runthiswithyourownfilenames:java-jarabe.jarunpackc:\Intel\xxx.abc:\Intel\xxx.tar Share Follow editedJan4'17at19:49 answeredJan4'17at19:44 RonTLVRonTLV 2,19022goldbadges2121silverbadges3434bronzebadges 1 1 Thisisagreatanswer,thankyou.Workedformeforextractingasingle-appbackupcreatedonaXiaomidevice(with.bakextension).Norootingrequired – Russian Jun5'18at23:16 Addacomment  |  4 Ihadalsothesameproblemonce.Thereisnowaytoaccessdirectlythefilewithinandroiddevicesexceptadbshellorrootingdevice. Besidehereare02alternatives: 1) publicvoidexportDatabse(StringdatabaseName) { try{ Filesd=Environment.getExternalStorageDirectory(); Filedata=Environment.getDataDirectory(); if(sd.canWrite()){ StringcurrentDBPath="//data//"+getPackageName()+"//databases//"+databaseName+""; StringbackupDBPath="backupname.db"; FilecurrentDB=newFile(data,currentDBPath); FilebackupDB=newFile(sd,backupDBPath); if(currentDB.exists()){ FileChannelsrc=newFileInputStream(currentDB).getChannel(); FileChanneldst=newFileOutputStream(backupDB).getChannel(); dst.transferFrom(src,0,src.size()); src.close(); dst.close(); } } }catch(Exceptione){ } } 2)Trythis:https://github.com/sanathp/DatabaseManager_For_Android Share Follow answeredAug23'15at18:30 KhairulAlamLiconKhairulAlamLicon 4101010silverbadges1919bronzebadges 0 Addacomment  |  4 Onarooteddevice,thecorrectsolutionisthis: Opencmd Changeyourdirectoryandgointo'Platformtools' Type'adbshell' su Press'Allow'ondevice chmod777/data/data/data/data/data/* OpenDDMSviewinEclipse/IntelliJandfromthereopen'FileExplorer'togetyourdesiredfile Theoriginalsolutionworked,butthechmodwouldreturnunknowndirectory.Changingthechmodcommandto/data/data/*gaveaccesstoallsubfoldersinthedatadirectoryfromDDMSinIntellij.IassumethesamesolutionistrueforEclipseDDMS. UPDATE So,whatI'vefoundisstrange.I'mrunningaNexus6usingDDMSinIntelliJ(AndroidDeviceMonitor).Ihavebuiltalittlestarterapp.Saidappsavesdatatoa.csvfileindata/data/com.example.myapp/files WhenIfirststartedtotrytoaccessthisfileonmyNexus6,IfoundthatIhavetorootthedevice..Icouldseethedatafolder,buttryingtoopenitwouldnotwork.Asmentionedonlineinotherplaces,theexpand+wouldvanishthenreappearshortlythereafter(note,therearesolutionsonthewebthatclaimtoallowaccesstothesefolderswithoutrooting,Ididn'tfindthemtilltoolate,andI'mnotsureifIprefernottorootanyway((I'dratherbeabletodoitmanuallythanrelyonanapporcommandprompttogivememysolutions))).Irootedmy6andtriedDDMSagain. Atthispoint,itshowedmethedatafolderandIcouldexpandthefolderandseethecom.directories,butIcouldnotopenanyofthem.ThatiswhenIdiscoveredtheabovesolution.Theinitialinstructionswouldnotworkonthispart: chmod777/data/data/data/data/data/com.application.pacakage/data/data/com.application.pacakage/* ThatiswhenItriedthesolutionIposted: chmod777/data/data/data/data/data/* Thatsolutionseemedtowork,butonlyoncertainfolders.Inowcouldexpandmymyappfolder,butcouldnotexpandthefilesdirectoryinit. Atthispoint,IplayedaroundforawhilethenfiguredwhynotjusttryitonthedirectoryIneedratherthantryingthesewildcardentries. chmod777/data/data/data/data/data/com.example.myapp/* Followedby: chmod777/data/data/data/data/data/com.example.myapp/files Thesecommandsallowedmetoexpandandviewthefilesinmyapp'sdirectorytoconfirmthatthe.csvwasbeingsavedcorrectly. Hopethishelpssomeone.Istruggledwiththisforhours! (tocompoundonthisatadfurther,oddlyenough,thepermissionsdidnotpasstothe.csvfilethatpassedtothefilesdirectory.myfilesdirectorypermissionsreaddrwxrwxrwxandmylog.csvfilepermissionsread-rw-rw----..justfyi) Share Follow editedOct25'15at0:13 answeredOct24'15at23:54 lol2dubslol2dubs 6711silverbadge88bronzebadges Addacomment  |  4 maybetoaccessthisfolderyouneedadministrativerights. soyouhavetwooptions:- rootyourdeviceandthantrytoaccessthisfolder useemulator p.s.:ifyouareusinganyofabovetwooptionsyoucanaccessthisfolderbyfollowingthesesteps openDDMSperspective->yourdevice->(SelectFileExplorerfrom rightwindowoptions)selectpackage->data->data->packagename ->files andfromthereyoucanpullupyourfile Share Follow editedFeb7'17at12:06 Jayanth 5,09133goldbadges1717silverbadges3535bronzebadges answeredJul11'14at13:02 user3829503user3829503 5122bronzebadges 1 IuseMEmuAndroidEmulator. – SohailAhmed Aug12'20at10:30 Addacomment  |  4 Youcandownloadasiglefilelikethat: adbexec-outrun-asdebuggable.app.package.namecatfiles/file.mp4>file.mp4 Beforeyoudownloadyoumightwan'ttohavealookatthefilestructureinyourApp-Directory.ForthisdothefollowingstepsTHelpernoticedabove: adbshell run-ascom.your.packagename cdfiles ls-als. TheAndroid-StudiowayShahidulmentioned(https://stackoverflow.com/a/44089388/1256697)alsowork.Forthosewhodon'tseetheDeviceFileExplorerOptionintheMenu:Besure,toopenthe/android-DirectoryinAndroidStudio. E.g.react-nativeusershavethisinsideoftheirProject-FolderrightonthesameLevelasthe/ios-Directory. Share Follow editedJan30'20at11:26 answeredAug10'18at6:11 suthersuther 9,65822goldbadges4848silverbadges8484bronzebadges Addacomment  |  2 adbbackupdidn'tworkforme,sohere'swhatIdid(XiaomiRedmiNote4X,Android6.0): 1.GotoSettings>AdditionalSettings>Backup&reset>Localbackups. 2.Tap'Backup'onthebottomofthescreen. 3.Uncheck'System'and'Apps'checkmarks. 4.Tapdetaildisclosurebuttonontherightofthe'Apps'celltonavigatetoappselectionscreen. 5.SelectthedesiredappandtapOK. 6.Afterthebackupwascompleted,theactualfileneedtobelocatedsomehow.Minecouldbefoundat/MIUI/backup/AllBackup/_FOLDER_NAMED_AFTER_BACKUP_CREATION_DATE_. 7.ThenIfollowedthestepsfromthisanswerbyRonTLVtoactuallyconvertthebackupfile(.bakinmycase)totar(duplicatingfromtheoriginalanswer): " a)Gohereanddownload:https://sourceforge.net/projects/adbextractor/ b)Extractthedownloadedfileandnavigatetofolderwhereyouextracted. c)runthiswithyourownfilenames:java-jarabe.jarunpackc:\Intel\xxx.abc:\Intel\xxx.tar " Share Follow editedJun6'18at0:06 answeredJun5'18at23:54 RussianRussian 1,2181010silverbadges1515bronzebadges Addacomment  |  1 OneofthesimplewayistocreateyourdatabaseonSD-Card.Becauseyoucannotgetaccesstoyourphone'sdatafolderininternalmemory,unlessyourootyourphone.SowhynotsimplycreateyourdatabaseonSD-Card. Moreover,ifyouwant,youmaywritesomefilecopying-codetocopyyourexistingdatabasefile(frominternalmemory)toexternalmemorywithoutrequiringanyroot. Share Follow answeredOct22'12at7:14 waqaslamwaqaslam 65.6k1515goldbadges160160silverbadges171171bronzebadges 2 howtodoit?howcanicreateadbinsdcard – NaveenPrinceP Oct22'12at16:41 Thismethodwillhelpyoutocreatedatabaseonsd-card.SimplyprovideapathofFilepointingtoSD-Cardandyouaregoodtogo – waqaslam Oct22'12at21:22 Addacomment  |  0 youcancopythisdbfiletosomewhereineclipseexplorer(eg:sdcardorPC),andyoucanusesqlitetoaccessandupdatethisdbfile. Share Follow answeredJul11'13at8:36 VitoVito 1,06099silverbadges1919bronzebadges Addacomment  |  0 Thequestionis:how-to-access-data-data-folder-in-android-device? Ifandroid-deviceisBluestacks * RootBrowserAPKshowsdata/data/.. TrytodownloadRootBrowser from https://apkpure.com/root-browser/com.jrummy.root.browserfree Ifthefileisatextfile youneedtoclickon"Openas","Textfile","Openas","RBTextEditor" Share Follow editedMar16'16at5:55 answeredMar16'16at5:39 TonioFERENER-VARITonioFERENER-VARI 1111bronzebadge Addacomment  |  0 YoucanalsotrycopyingthefiletotheSDCardfolder,whichisapublicfolder,thenyoucancopythefiletoyourPCwhereyoucanusesqlitetoaccessit. Hereissomecodeyoucanusetocopythefilefromdata/datatoapublicstoragefolder: privatevoidcopyFile(finalContextcontext){ try{ Filesd=Environment.getExternalStorageDirectory(); Filedata=Environment.getDataDirectory(); if(sd.canWrite()){ StringcurrentDBPath= context.getDatabasePath(DATABASE_NAME).getAbsolutePath(); StringbackupDBPath="data.db"; FilecurrentDB=newFile(currentDBPath); FilebackupDB=newFile(sd,backupDBPath); if(currentDB.exists()){ FileChannelsrc=newFileInputStream(currentDB).getChannel(); FileChanneldst=newFileOutputStream(backupDB).getChannel(); dst.transferFrom(src,0,src.size()); src.close(); dst.close(); } } }catch(Exceptione){ e.printStackTrace(); } } Manifest: Share Follow editedMar19'18at14:34 answeredDec18'17at20:51 live-lovelive-love 38k1818goldbadges180180silverbadges166166bronzebadges 1 Allactionforcopyfileisnotaccessibleifthefiledoesn'tshareReadpermissiontoOthers – SteveLuck Mar19'18at9:11 Addacomment  |  0 SQLlitedatabaseisstoreonuser'sPhoneandit'shiddingunderpath: /Data/Data/com.companyname.AppName/File/ youhave2optionshere: youcanrootyourphonesothatyougetaccesstoviewyourhidding db3file thisisnotasolutionbutaworkaround.Whynotjustcreatetest pagethatdisplayyourdatabasetableinitusing'select'statment. Share Follow answeredDec12'19at20:20 user9207271user9207271 Addacomment  |  Highlyactivequestion.Earn10reputation(notcountingtheassociationbonus)inordertoanswerthisquestion.Thereputationrequirementhelpsprotectthisquestionfromspamandnon-answeractivity. Nottheansweryou'relookingfor?Browseotherquestionstaggedandroidandroid-emulatorandroid-sqliteadboraskyourownquestion. TheOverflowBlog Whoownsthisoutage?BuildingintelligentescalationchainsformodernSRE Podcast395:Whoisbuildingcloudsfortheindependentdeveloper? FeaturedonMeta Nowlive:Afullyresponsiveprofile Reducingtheweightofourfooter TwoBornottwoB-Farewell,BoltClockandBhargav! Linked 1 Howtoopenfilefrominternalstorageinspecificviewer? 106 Android-PullingSQlitedatabaseandroiddevice 117 RetrievedatabaseoranyotherfilefromtheInternalStorageusingrun-as 44 AndroidDeviceMonitor"data"folderisempty 13 WhereisAsyncStorageDataPhysicallyLocatedonAndroidDevices? 12 HowtoFindmyApp's/data/datausingAndroidDeviceMonitor'sFileExplorer 6 AndroidStudios:AndroidDeviceManagershowsnofilesforNougat7.0inFileExplorer 5 Androidstudiofileexplorernotshowingfilesindatafolder 3 Can'tfindmyappdataonmydevice'sfileexplorer 2 CopyfolderfromAndroidapptolocalWindowsdirectory Seemorelinkedquestions Related 4135 Howdoyouclose/hidetheAndroidsoftkeyboardprogrammatically? 3057 HowtostopEditTextfromgainingfocusatActivitystartupinAndroid 2942 IsthereauniqueAndroiddeviceID? 1453 Howcanyougetthebuild/versionnumberofyourAndroidapplication? 3843 ProperusecasesforAndroidUserManager.isUserAGoat()? 818 HowtoavoidreverseengineeringofanAPKfile 349 AndroidADBdeviceoffline,can'tissuecommands 435 ADBAndroidDeviceUnauthorized HotNetworkQuestions GraphsfromthepointofviewofRiemannsurfaces Isitnormaltohave3.3VintheheatpadofaLD1117V33Clinearregulator(TO-220)? IsLisztreallypronouncedliketheEnglishword"list"? Candefrostingvacuum-packedfishinitspackagingcausebotulism? Convertprefixtoinfix ForeachringR,isthereablock-diagonalcanonicalformforasquarematrixoverR? Whydidn'ttheEnterprise-DsendaprobetolookforPicard? Whatdothescammersdowhentheygetaccesstosomeone'sonlinebanking? Whofirstusedthephrase"DeflationaryTheoryofTruth"? Datastructurethatsupportsinsertionandfastrandomelementlookup Istherearootwordfor-scendo? CollectingalternativeproofsfortheoddityofCatalan Wordforaplanthathasnotbeenperformedbecauseofsomeissues Whydon'tenginesshowexplicitlythatacertainmovetakestoathreefoldrepetition(insteadofjustshowing0.00)? MethodforcreateacopyofList WhatcrimesdidRosenbaumcommitwhenheengagedRittenhouse? ConvertRegextoMask WhatshouldIdoideallytorechargeduringaPhD? HowtoannotatestaffwithbeatnumbersinLilypond? Whatdoes"Thebargaintotheletter"mean? CanImakeahelixwith4strands? Howcananoceanofseawaterbehavelikehoneywithoutchangingthechemistry? Whyisaccusativeusedinthissentence? Couldaplantcaptureaperson? morehotquestions Questionfeed SubscribetoRSS Questionfeed TosubscribetothisRSSfeed,copyandpastethisURLintoyourRSSreader. default Yourprivacy Byclicking“Acceptallcookies”,youagreeStackExchangecanstorecookiesonyourdeviceanddiscloseinformationinaccordancewithourCookiePolicy. Acceptallcookies Customizesettings  



請為這篇文章評分?