0
votes
0answers
23 views

read and write images in structure folder

I'm building a travel infomation. My app has about 500 images in structure folder. I don't know how to read/write by my application. I usually read and write image by id through drawable. But put 500 ...
1
vote
1answer
24 views

Cannot delete files transfered from computer in Android

I'm making a video downloader app and I've got no problems saving and deleting files downloaded by the app to external storage but any file transfered from my computer cannot be deleted by the app. ...
-1
votes
0answers
20 views

Auto-dialer and web access

I need to create a simple app that will dial number which is written in a text file and saved on web server. There is no UI to the app (at least I don't need any) and the app should run continuously ...
0
votes
1answer
41 views

Reading from a file using JAVA IO in android App

I have a file which an external JAR needs. I tried adding that file to assets and provided the path straight away. But that din't work and threw an error java.io.FileNotFoundException: ...
0
votes
2answers
38 views

Create a new File on SD card from uri?

i am getting multiple uri's from the gellery Intent.ACTION_SEND_MULTIPLE intent all i want to do is copy these files to a new location "/sdcard/BACKUP/" i have been trying for hours without a ...
0
votes
3answers
55 views

retrieving JSONObject from a file

I wanted to store JSONObject in a file. For the purpose I converted the Object to string and then stored it in a file. The code that I used is : String card_string = card_object.toString(); ...
0
votes
1answer
60 views

Samsung file io - can write file but not read back in

For several weeks, we've been fighting an issue that's been discussed on SO before, but without a working answer in the specific case we've encountered. So after re-reading dozens of threads and ...
0
votes
1answer
38 views

NullPointerException when retreiving files from save location

I'm building an Android app that takes a picture and then immediately goes to a crop screen. I couldn't figure out how to pass the image without downgrading it (i.e. if i was to put it in a Bundle), ...
0
votes
1answer
30 views

Write .3gp file on sd card

I have .3gp audio file which is stored in SD Card.I want to copy that file into another folder of sd card.I have googled a lot about it but didn't get any working idea.Please help me if anyone ...
-4
votes
0answers
27 views

Read information from a text file using JSON on android [duplicate]

I want to use a android app to perform the following function. I want to get information from a text file named "cons" which is in JSON format. The contents of the file: { "reply": { ...
-2
votes
1answer
65 views

Buffered Reader not reading [closed]

private void monthlyInput() throws IOException { File inFile = new File(Environment.getExternalStorageDirectory ().getAbsolutePath(), "S050213.txt"); String data = ...
2
votes
2answers
53 views

Permission denied when creating new file on external storage

I need to copy a file from the assets to the external storage. Here is my code: File f = new File(Environment.getExternalStorageDirectory() + File.separator + "MyApp" + File.separator ...
0
votes
1answer
37 views

creating files with IF logic inbeded [closed]

Actually two questions: The main question: I hope it isn't true that you can't have simple logic in writing out a file!!! I have a cursor to load a dynamic list on the screen normally invoked by ...
-1
votes
0answers
17 views

Reading file content in android through the wifi [closed]

Here is my problem. I have a text file in my laptop and I want to read its content by any android device through the wifi. I want to create an edit text for getting ip address. Another edit text for ...
-1
votes
2answers
52 views

Editing existing file in Android

I am trying to edit existing file on the device by-First- select the file using selector that retrieve the path of the file like this "mnt/sdcard/file.png". Then I pass it to reader to read the ...
0
votes
3answers
70 views

Android; Check if file exists without creating a new one

I want to check if file exists in my package folder, but I don't want to create a new one. File file = new File(filePath); if(file.exists()) return true; Does this code check without creating ...
0
votes
0answers
28 views

How to copy part of an incoming message into another file in android?

I am writing an android code in which I need to copy a particular part of the message. Eg, if the message contains "M" followed by a number, say 25, it should copy the number and paste in the text ...
1
vote
1answer
34 views

Keeping a text file in android

I am new to android and facing issue with file system usages. I have seen several threads but i am still not able to find the answer which i am looking for my requirement. I have a original file ...
0
votes
0answers
58 views

Cannot write to Sdcard in Android ChromeTestShell

I have build the Android Chrome test shell (v27.0.1453.49) using instructions from the website. I need to dump some data to a file in SDCARD from chrome code, but hit the errno=13 everytime. I already ...
0
votes
1answer
36 views

Having trouble with File I/O in Android

Heres my code: String path = "/data/data/edu.bfit.readwritedemo/files/test.txt"; FileInputStream fis; File file = new File(this.getFilesDir().getAbsolutePath() + path); try { ...
0
votes
0answers
50 views

Reading file in Android NDK

I have the following native code in my project: sprintf(fileName, "specsheet.txt"); ifstream file; file.open(fileName); However, I get a signal 11 error when I try to launch the app and it executes ...
0
votes
1answer
50 views

How to save an image automatically to a specific folder or create a new folder if needed after taking a picture using the camera for android

I am currently trying to create an app which when taking a picture using the camera, when saving the image, it saves to a specific folder location and if the folder doesn't currently exist on the ...
0
votes
1answer
41 views

Cannot read file just written to

I am trying to read from a file to which some user credentials were written. I want to write the file to an internal storage location. The code: private void writeSendDetails(String name, String ...
0
votes
1answer
61 views

file handling in kivy

I am using kivy for android application. Currently I am working on a small game...the problem arises when I want to store the highest score in a file.... I am using python's open and readline and ...
0
votes
3answers
80 views

How to store a large number of words (to be accessed by an android app)?

I have a list of words (112,000 in alphabetical order) with one word definitions. The definitions are sometimes more than one and are in the format: word:definition1|definition2|... The max number ...
1
vote
3answers
66 views

Saving Parcelable data

I have a class which implements Parcelable, and could not implement Serializable because it contains some basic Android classes that I can not modify. Some of the objects in this class are for ...
0
votes
1answer
29 views

Im trying to read in a file on android

I am making an app where the text of a button is a random string, and all of the random strings are stored in a .txt file. I made a method that return a string and for some reason whenever I run the ...
0
votes
3answers
53 views

trouble writing to sdcard

What's wrong with the code? I added the permission already. Logcat isn't printing the message it's supposed to show. I'm guessing I have to use a filestream? public class Run { int abc = 2; int[] ...
0
votes
0answers
188 views

Send file from PC to Android via Bluetooth

I want to send a file containing file names from my PC to Android phone using Bluetooth connection. At the moment the file names are stored in an ArrayList and I am writing each item of the ArrayList ...
0
votes
2answers
92 views

Unable to write data into a file

I am trying to write data on to a file in android, but I am unable to do so. Please check my code and guide me for the same. public static final File SCANNED = new ...
0
votes
2answers
159 views

Android getAssets().openFd(string) - file not found

getAssets()openFD() fails. AssetFileDescriptor fileFD=null; File file = new File(Environment.getExternalStorageDirectory() + "/Music/ckyws8.wav"); fileFD = getAssets().openFd(file.toString()); ...
0
votes
2answers
97 views

how to write on /sys/ ? Android

I'm trying to writte on "/sys/devices/virtual/timed_output/vibrator/amp" file. I can read it just fine, the problem is when i try to writte it. Here's my code: public static void writeValue(String ...
0
votes
1answer
112 views

Outputting data to a file on android, not sure where it's going or if it's going anywhere

I am trying to output numeric values one at a time from an Android application I'm writing, but I'm having a lot of trouble figuring out what's going on. Tried looking for answers, but only confused ...
0
votes
1answer
153 views

Writing to existing file with help of assets manager in android

I am using the below code for reading my file and it is working fine, but now I want to add new text to that file. Please help me private void loadingDictionary() { // TODO Auto-generated method stub ...
0
votes
3answers
95 views

FilenotFoundException java file android

File fXmlFile = new File("D:\\Praias.xml"); DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance(); DocumentBuilder dBuilder = dbFactory.newDocumentBuilder(); ...
1
vote
2answers
197 views

Accessing android SD card

I'm trying to save my current webview in the android's cache (I have been told mnt/sdcard) however whether using the file explorer or trying to write to it in the code I recieve this error on my avd ...
1
vote
0answers
33 views

External/ internal storage viewing file [duplicate]

I have my app writing a file to the 'Download' folder (just some text, the content is irrelevant). Using a file manager app I am able to see the text file and view it. I then plug in the Nexus 7 ...
0
votes
2answers
24 views

Copying file (img/doc) from a specific path to another in android

I've a functionality in my application in which I save a doc/img file path in my database. This file is lying in a folder (E.g. "/mnt/sdcard/MyApp/MyItem/test.png"). Now what i want to do is to copy ...
0
votes
3answers
108 views

Making a directory in android sdcard

i m trying to create directory in sd card through this card.but it is not worked.i put write external storage permission in manifest though it is not working.need urgent help.i had put this code in ...
3
votes
1answer
72 views

Android reading from files and occasionally incorrect values

DISCLAIMER The problem has been fixed, as I described in the comments. I was thinking of deleting it since there was no answer and I didn't want to confuse others, but my fix doesn't necessarily ...
1
vote
2answers
68 views

Saving an image on the mobile Android phone

I want to save an image that is received from an input stream to the device. This image is displayed using an ImageView and the function decodeStream(). How can I save the image received to a ...
5
votes
1answer
202 views

Android: File IO from SD card using the NDK [closed]

I am trying to write onto an output file using the NDK, and it doesn't seem to be working. The code I wrote looks like this: JNIEXPORT jdouble JNICALL ...
1
vote
1answer
103 views

Reading from SD card

I am trying to read a simple text file from my SD card using Java, and I can't seem to be able to open it. I am using Eclipse for Mobile Developers on Ubuntu 12.04. Here's the code in the onCreate() ...
0
votes
1answer
123 views

Android Assets and NDK: formatted input, file names and workarounds

I have a couple of questions regarding using the NDK to read files. Browsing through different questions and answers, I found this short thread, which, if I understood correctly, says that you can ...
1
vote
4answers
105 views

Writing file to SD_Card

///edited I try to run the program on the main thread and it can read and save. I think is problem of the asynctask!! /// First I already add the user permission to the android manifest ...
1
vote
0answers
68 views

Android : How to write a file to internal memory from a library project?

From a android library project sourced to an external app, fos = openFileOutput(CFG_NAME, Context.MODE_PRIVATE); Returns a java.lang.NullPointerException The function is used inside a class ...
0
votes
1answer
76 views

Best way to display information to a ListFragment?

I am creating an app for my campus news paper and one of the features will be a tab with a list of all the clubs and organizations on campus. I am wondering what the best way to do this would be. I ...
3
votes
6answers
193 views

How to delete all files and folders in one folder on Android

I use this code to delete all files: File root = new File("root path"); File[] Files = root.listFiles(); if(Files != null) { int j; for(j = 0; j < Files.length; j++) { ...
2
votes
1answer
93 views

Boost text_oarchive constructor crashes on Android, not windows

I'm trying to port a game to Android, and I've been using boost for the saving / loading behaviour. The App now crashes when the save code is called. The crash occurs while trying to make ...
2
votes
4answers
600 views

no permission to write in /mnt/extsd [duplicate]

i'm unable to write into the external sd ( /mnt/extsd ) in mini x plus h24 i have already insert in the manifest The system has two sd card, the first one is reachable with ...

1 2 3 4 5 8