Tagged Questions
0
votes
3answers
242 views
Android: Neither res/raw files nor assets can be loaded
I try to load a .ini file in android, but it doesn't work. Until now I have tried the following two ways:
Load file from res/raw folder:
int fileId = context.getResources().getIdentifier(fileName, ...
0
votes
0answers
108 views
Android - AssetFileDescriptor referring to wrong file
I am making a simple app with 3 radio buttons in a radio group. When the user selects one of the three, mediaplayer should play the corresponding song, yet all three buttons play the same song, even ...
0
votes
0answers
37 views
Directory that is a mix of asset an internal storage?
i'm working on an android project where we are deploying a huge configuration file along with the application. This file should be updated from time to time using the push-service.
The main problem ...
0
votes
1answer
706 views
[Android Assets]: File or Folder?
My Asset structure is divided in folders and files. When I open a file I need to know if is a file or folder. I need to know is the asset path I'm accessing if a file or a folder.
I'm trying to ...
1
vote
1answer
639 views
Android: how do I create File object from asset file?
I have a text file in the assets folder that I need to turn into a File object (not into InputStream). When I tried this, I got "no such file" exception:
String path = ...
0
votes
1answer
258 views
mootools: help loading multiple, per-page, Asset.javascript files
i want to load an array of page-specific external .js files. in the past, i did it through PHP at the top of each page, like so:
<?php
$jsFiles = array("file01.js", "file02.js", ...);
...
2
votes
1answer
2k views
How to save back into a file in assets folder
I understand I can open a file in assets folder like this.
InputStream is = ((Activity) mView).getAssets().open("some.txt");
But what should I do to save back to the same file? I mean how do I get ...
5
votes
4answers
9k views
How to open a pdf stored either in res/raw or assets folder?
I'm going to show a pdf in my application, and the pdf has to be bundled with the application.
What is a good way to do this?
I have read that it might be possible to do this by adding the pdf file ...
13
votes
6answers
36k views
Android path to asset txt file
I'm doing:
FileReader fin = new FileReader("file:///android_asset/myFile.txt");
in an Android project and many variations. At runtime I get a file not found exception. The file is present and ...
1
vote
1answer
796 views
How do I upload an image as a File and display it as a Thumbnail with Tapestry 5?
Using the 3rd party tapestry-upload component, I can upload a File from the client on the server.
Using the chenillekit's thumbnail component, a can make a thumbnail from an Asset.
How can I convert ...
