To store (data) in a computer or on a storage device.
116
votes
9answers
126k views
Save bitmap to location
I am working on a function to download an image from a web server, display it on the screen, and if the user wishes to keep the image, save it on the SD card in a certain folder. Is there an easy way ...
0
votes
1answer
1k views
How to save uploaded file
I am using Tomahawk's <t:inputFileUpload> to upload files.
<t:inputFileUpload value="#{bean.uploadedFile}" />
<h:commandLink action="#{bean.save}"/>
However I can't figure out how ...
19
votes
8answers
27k views
Image, saved to sdcard, doesn't appear in Android's Gallery app
I save an image to the sdcard and it doesn't appear in the Gallery application until I pull off the sdcard and return it back.
Do you have any idea why is it so?
Seems like the Gallery application ...
7
votes
4answers
34k views
Android Saving created bitmap to directory on sd card
I created a bitmap and now i want to save that bitmap to a directory somewhere. Can anyone show me how this is done. Thanks
FileInputStream in;
BufferedInputStream buf;
try {
...
110
votes
23answers
40k views
Why can't I save CSS changes in FireBug? [closed]
FireBug is the most convenient tool I've found for editing CSS - so why isn't there a simple "Save" option?
I am always finding myself making tweaks in FireBug, then going back to my original .css ...
5
votes
3answers
11k views
android how to save a bitmap - buggy code
Im trying to serialize a class in wich i have a bitmap variable. Here is the code that is a bit working.... I need help to find out what is still wrong.....
private Bitmap myVideoScreenshotBm;
...
6
votes
2answers
6k views
Does Google App Engine allow creation of files and folders on the server?
I know Google App Engine offers free space, but I wonder if it's for storing data in it's database only or does it also allow me to create files and directories on the server side to store my data ? ...
1
vote
3answers
10k views
Save image in database? [duplicate]
Possible Duplicate:
Storing Images in DB - Yea or Nay?
Duplicate:
http://stackoverflow.com/questions/766048/store-image-in-database-or-in-a-system-file
...
30
votes
7answers
29k views
Permanently add a directory to PYTHONPATH
Whenever I use sys.path.append, the new directory will be added. However, once I close python, the list will revert to the previous (default?) values. How do I permanently add a directory to ...
10
votes
3answers
7k views
Browser event when downloaded file is saved to disk
I have sensitive files to download to users, and each user is permitted to download a given file exactly once. If the download fails, I want to permit the re-download, but not otherwise.
It's not ...
9
votes
1answer
6k views
Save Matlab invisible plot under terminal as an image with same size
I am SSH connecting to a Linux server and do some MATLAB programming. I would like to save invisible plot as
figH = figure('visible','off') ;
% Plot something
% save the plot as an image with ...
16
votes
1answer
14k views
Save An Image To Application Documents Folder From UIView On IOS
I have a UIImageView that allows a user to place and hold an image until it can be saved. The problem is, I can't figure out how to actually save and retrieve the image I've placed in the view.
I ...
14
votes
1answer
4k views
Save UIView's representation to file
What is the easiest way to save UIView's representation to file?
My solution is,
UIGraphicsBeginImageContext(someView.frame.size);
[someView drawRect:someView.frame];
UIImage *image = ...
3
votes
3answers
8k views
android image save to res/drawable folder [duplicate]
I want to save image into my local drive folder or to res/drawable folder in my application. I'm right now saving img into sd card but I've to save it in res/drawable folder.
My code is:
String ...
14
votes
7answers
45k views
How do I get the coordinate position after using jQuery drag and drop?
How do I get the coordinate position after using jQuery drag and drop? I want to save the coordinate to a database, so that next time I visit, the item will be in that position. For example, x: ...