Tagged Questions
The fileoutputstream tag has no wiki summary.
31
votes
6answers
26k views
Android download binary file problems
I am having problems downloading a binary file (video) in my app from the internet. In Quicktime, If I download it directly it works fine but through my app somehow it get's messed up (even though ...
14
votes
12answers
30k views
I can't delete a file in java
I'm trying to delete a file, after writing something in it, with FileOutputStream. This is the code I use for writing:
private void writeContent(File file, String fileContent) {
FileOutputStream ...
7
votes
1answer
70 views
At what point does wrapping a FileOutputStream with a BufferedOutputStream make sense, in terms of performance?
I have a module that is responsible for reading, processing, and writing bytes to disk. The bytes come in over UDP and, after the individual datagrams are assembled, the final byte array that gets ...
6
votes
2answers
723 views
ext4/fsync situation unclear in Android (Java)
Tim Bray's article "Saving Data Safely" left me with open questions. Today, it's over a month old and I haven't seen any follow-up on it, so I decided to address the topic here.
One point of the ...
5
votes
1answer
296 views
con.txt and C++
#include <fstream>
int _tmain(int argc, _TCHAR* argv[])
{
std::ofstream F("con.txt", std::ios::out);
F << "some text in con.txt";
F.close();
return 0;
}
output:
some ...
4
votes
1answer
1k views
Printing HTML file out to printer in java
I need to print a an html out to the printer programmatically. I do not want to print the html tags, I want the html tags parsed before printed.
This code adds html features and data to an htm ...
3
votes
2answers
370 views
FileOutputStream failed with FileNotFoundException even though the File apparently, exists, is writeable and has permissions
Although I am relatively new to Android, I have experience in Java and C based programming and I am currently using Eclipse, with the usual toolset, for development. I have read most of the posts ...
3
votes
2answers
188 views
FileOutputStream.close is really slow when writing large file
I have a method which receives a file over a TCP socket using this code:
FileOutputStream fileStream = new FileOutputStream(filename.getName());
while (totalRead < size) {
if (size - totalRead ...
3
votes
1answer
90 views
How to save text file without overwriting?
I want to save in a text file without overwriting the current data. I mean the next data that will be save will go to the new/next line whenever I save and that is my problem, I don't know how to do ...
3
votes
2answers
157 views
How can I put an actionlistener to the OK button of JOptionpane.showInputDialog?
I have a showInputDialog. Whenever I type something to that field, I want it to be save as textfile when I click the ok button. My problem is I don't know where/how to put the listener.
Could ...
3
votes
3answers
169 views
How to overwrite one property in .properties without overwriting the whole file?
Basically, I have to overwrite a certain property in a .properties file through a Java app, but when I use Properties.setProperty() and Properties.Store() it overwrites the whole file rather than just ...
3
votes
2answers
62 views
Effiecient serialization of native java arrays with java.io
i gotta question about Java Serialization.
I'm simply writing out 10 arrays of size int[] array = new int[2^28] to my harddik (i know that's kinda big, but i need it that way) using a ...
3
votes
1answer
4k views
Android: How to store data on internal memory?
It's perfectly described here how to do it, the only problem: He doesnt know the function openFileOutput();
private void saveSettingsFile() {
String FILENAME = "settings";
String ...
3
votes
1answer
3k views
Java BufferedWriter, OutputStreamWriter able to write to closed FileOutputStream
I was expecting the following code to throw an exception when I goto write data to the Stream:
File file = new File("test.txt");
FileOutputStream fs = new FileOutputStream(file);
OutputStreamWriter ...
2
votes
2answers
93 views
How to overwrite/reuse the exisitng output path for hadoop Job's again and agin overwrite
I want to overwrite/reuse the existing output directory when i will run my Hadoop Job daily.
Actually the output directory will store summarized output of each days Job run result's.
If I specify the ...
2
votes
1answer
124 views
Write a List to internal storage onPause(), then read the List onResume()
I'm so confused. After reading this thread, I'm trying to write a List to internal storage onPause(), then read the List onResume(). Just for testing purposes, I'm trying to write a simple string as ...
2
votes
2answers
1k views
Get file name from FileOutputStream
Is there a way to get the file name from a FileOutputStream or from FileInputStream?
2
votes
2answers
3k views
Why does this Android FileOutputStream throw a NullPointerException?
There does not seem to be any Android manifest permission that needs to be set for file io.
public class Device extends Activity {
private static final Configuration config = new Configuration();
...
2
votes
2answers
325 views
Skip creating file in FileOutputStream when there is no data in Inputstream
This is a logging function which logs error stream from the execution of an external program. Everything works fine. But I do not want to generate the log file when there is no data in error stream. ...
1
vote
2answers
62 views
Writing to external storage filenotfoundexception
I am attempting to write a file to external storage in android. I keep getting the error, "java.io.FileNotFoundException: /mnt/sdcard/Survey.txt (Is a directory)." The method that contains the code ...
1
vote
1answer
94 views
In java, how to read a fixed length from the inputstream and save as a file?
In java, how to read a fixed length from the inputstream and save as a file?
eg. I want to read 5M from inputStream, and save as downloadFile.txt or whatever.(BUFFERSIZE=1024)
FileOutputStream fos = ...
1
vote
1answer
584 views
Java android fileinputstream fileoutputstream issue
I need a little question.How can I repair that code so I can use it in android too.I need just to load a file from assets folder in android projet, decrypt it and to show the size of the file and how ...
1
vote
2answers
469 views
removeEldestEntry overriding
How can I override removeEldestEntry method to saving eldest entry to file? Also how to limit the size of a file like I did it in LinkedHashMap. Here is code:
import java.util.*;
public class level1 ...
1
vote
3answers
480 views
What character encoding does ObjectOutputStream 's writeObject method use?
I read that Java uses UTF-16 encoding internally. i.e. I understand that if I have like: String var = "जनमत"; then the "जनमत" will be encoded in UTF-16 internally. So, If I dump this variable to some ...
1
vote
4answers
181 views
InputStreams being GCed
I know that if I do something like
copyFromInToOut(new FileInputStream(f1), new FileOutputStream(f2));
System.gc();
It will run the GC on those FileInputStreams, closing them. But if I do
...
1
vote
2answers
791 views
Write problem on android application
Below is the code to write to a file after downloading an image from the web. But somehow, it's just stuck while writing to File Stream. No Exception at all. It just stays on while loop then displays ...
1
vote
4answers
1k views
Deleting files created with FileOutputStream
I'm developing for the Android platform.
My app creates a temp file with a simple call to:
FileOutputStream fos = openFileOutput("MY_TEMP.TXT",Mode);
It works fine because I can write to it and ...
1
vote
2answers
1k views
Creating and writing file from a FileOutputStream in Java
Okay, so I'm working on a project where I use a Java program to initiate a socket connection between two classes (a FileSender and FileReceiver). My basic idea was that the FileSender would look like ...
1
vote
1answer
487 views
FileOutputStream error
I had a part of code which suppose to get an image from website and store it into the sdcard. The following code was working find when i develop on sdk1.5. However, it was not working now after i ...
1
vote
2answers
733 views
Add Hexadecimal Header Info to JPEG File Using Java
I need to add header info to a JPEG file in order to get it to work properly when shared on some websites, I've tracked down the correct info through a lot of Hex digging, but now I'm kind of stuck ...
1
vote
2answers
756 views
Using FileOutputStreams and Jena Models in Java Servlets within an Eclipse Web Project
I have recently created a web project in Java using eclipse. I have a servlet which includes a timer task. This timer tasks calls the "writeList" method of an XML Writing class that I have created. ...
0
votes
1answer
9 views
trouble converting a editable to a string in an alertdialog that saves using fileoutput
In my alertdialog the user enters a comment on a Edittext. When I convert the Editext to an editable then save the editable, it works. However when I try to concat it with other values into a ...
0
votes
1answer
32 views
Maven Unit Test FileNotFound Error
I created a Maven project that involves "writing out" a CSV file on completion.
I created a test class to generate a "mock/test" report file, but when running my unit test, when using the "mvn ...
0
votes
1answer
40 views
FileoutputStream creating empty files occasionally
Below code sometimes work as expected and other times creates empty files without writing into them or write part of the buffer creating smaller file. What have I done wrong here? Here I mentioned ...
0
votes
1answer
30 views
unable to write data in file in by java
I am creating a text file and writing some data into it.the string i want to write in file
is written successfully but whenever i want to write the new line (use \n) in file it shows some boxes in ...
0
votes
2answers
62 views
What does FileOutputStream.write(int b) do? [closed]
Possible Duplicate:
Why Java OutputStream.write() Takes Integer but Writes Bytes
The documentation for FileOutputStream.write(int b) states that it writes the byte to the file, but the ...
0
votes
1answer
64 views
create File from FileOutputStream
I'm using org.apache.commons.net.ftp to download files in a remote machine.
There is a method, that reads the files to a FileOutputStream object.
ftpClient.retrieveFile("/" + ftpFile.getName(), fos);
...
0
votes
1answer
38 views
Name the Zip folder with the name of the zip file
I am using TarInputStream() to read the contents of a tar file and storing all the files from it at a particular location. I want to create a folder with the name similar to the tar file and save all ...
0
votes
3answers
78 views
Write bitmap to file in chunks android
This question is related to my previous question but you dont need to read that in order to understand it.
Now I was trying to convert bitmap into smaller parts and then save those smaller parts.
...
0
votes
2answers
50 views
How to write data with FileOutputStream without losing old data?
If you work with FileOutputStream methods, each time you write your file through this methods you've been lost your old data. Is it possible to write file without losing your old data via ...
0
votes
3answers
109 views
Unable to copy SQLite database from assests folder to device memory
I'm Unable to copy SQLite database from assests folder to device memory(trying on emulator).
I have a database in my project's assests folder which has a table containing 1000s of pre-existing rows.
...
0
votes
1answer
42 views
after sd_card save, jpeg saves distorted
so, I save my picture to the sd card using fileOutputStream- i have the image formatted for jpeg- but the image saves distorted. this is weird because the thumbnail image is the correct ...
0
votes
3answers
62 views
Socket-transferred file: contents are empty
I am working on transferring a file between two computers over a socket. Everything seems to work, but when I look at the contents of the retrieved file, it is empty. What am I doing wrong?
Here is ...
0
votes
0answers
86 views
Android asset copy to external files dir synchronization issue
In the onCreate method of my Activity I copy a large (20 - 30mb) wad/archive file from the asset manager to the external files directory using the following code:
private boolean UnpackContent( ...
0
votes
2answers
46 views
Is calling flush onFileOutputStream enough?
So of course we must try-catch-finaly any Closable resource.
But I came across some code which sins as follows:
java.util.Properties myProps = ... reads & loads (and doesn't close Stream!)
...
0
votes
0answers
11 views
Redirecting output to a file in Vc++
I have an windows application in vc++, and ia m using readly available one library, but if i invoke an API from that library, that API will always output the results directly to console.
But since my ...
0
votes
1answer
51 views
Unable to Write Contents of Jar File to Local Servlet on Tomcat 7.0.22
Good Afternoon,
I am trying to extract the contents of a jar file programmatically and found a code snippet here which has allowed me to extract the contents of a jar file on my local machine ...
0
votes
1answer
54 views
Receive file info using DataInputStream and write it
I am trying to receive a file that client sends using DataInputStream and write it into file.
(Client sends the file using DataInputStream write(byte[], len, off) method)
Here's how I am trying to ...
0
votes
1answer
54 views
Using JarEntry to write sound files is not working as intended
public static void writeFile(String theFileName, String theFilePath)
{
try {
File currentFile = new File("plugins/mcMMO/Resources/"+theFilePath+theFileName);
...
0
votes
0answers
435 views
Write RTP video stream (H264 codec) to a mp4 file
i want to store a H264 video that is recorded from a rtp (live)stream to a file.
i've tried this with a simple java program, but vlc player cannot open the file.
here is my code:
try
{
...