FileOutputStream is a Java class used to write bytes directly to a file.

learn more… | top users | synonyms

0
votes
1answer
16 views

Save button stops app

public void save(View v) { switch(v.getId()) { case R.id.bSave: filename = "data/monday.txt"; vsName.showPrevious(); vsTime.showPrevious(); ...
0
votes
2answers
23 views

Writing data to file is erasing everything before it(Placing 00's) and changing the file size

I have a program which writes out some data- I am using this logic FileOutputStream outpre = new FileOutputStream(getfile()); FileChannel ch = outpre.getChannel(); ch.position(startwr); ...
0
votes
1answer
26 views

play video from servlet outputstream using jwplayer in html

After browsing a lot and wasting much time i managed to setup one player that is JWPlayer now this player is able to play the files whose location is in context path something like "video/test.flv". I ...
0
votes
1answer
42 views

Android, How to retrieve the image previously save and display when required

I used this code below to save an image taken from the camera intent, to a folder in the gallery, which worked great. I'd like to retrieve the image to display on an ImageView within an activity when ...
-1
votes
2answers
48 views

FileOutputStream appending issue, where I am going wrong?

I am trying to get a 3 to 5 PDF file(from some internet source) & merging them one after another. FYI, I dont want to use iText or any other PDF lib, because, please look at the code once public ...
0
votes
2answers
24 views

Save mobile number in a file android

I have developed an android app that enable the user to register by his/her mobile phone number. I want my app to save the phone number so that next time the user open the app, there will be no need ...
0
votes
1answer
18 views

Python 3.3 - Getting Header and redirect the results

I would like to create a script that look to a file, read each line (which are url) and fetch the HTTP header for me. I have a questions : I try to redirect the result to a text file but, anyhow I ...
-3
votes
1answer
53 views

Convert filleoutputstream to a file java [closed]

Good Day I am downloading a file using ftpclient, and is downloading successfully, I however have a problem converting this to a file For example I am downloading a file called "helper.pdf" and I ...
0
votes
1answer
27 views

Write out java vector results to file

The program is supposed to calculate Prime Numbers using vectors and write the results out to a file. When I run it, it calculates the Prime Numbers from 2-64 and prints it out onto the screen. But ...
0
votes
3answers
57 views

Java out of memory using fileoutstream

I,m trying to export some files from a system and save it in my drive, the problem is that some files are pretty big and I get the java out of memory error. FileOutputStream fileoutstream = new ...
1
vote
2answers
30 views

Setting number in a file to 0 when pressing a JButton

In the starting menu for my game I wan't to make it so that when you press the "Continue" button you get the score that you had the last time you played. I have already fixed the code that saves the ...
0
votes
2answers
24 views

Append to a File

I am trying to write a java program that appends the current date and time of the system to a log file (that gets run by a batch file at my computer startup). Here's is my code. public class ...
1
vote
2answers
80 views

Writing large binary data to file

Hi I am working on a project on writing our own huffman coding. I am currently having trouble writing the binary 1's and 0's to an output file. It works with smaller input files but for very large ...
0
votes
3answers
91 views

Writing to console and text file

I found the code below from the internet, works but it doesn't write the printed console to omt.txt, it only writes the System.out.println statements after the second catch block.If you run the code ...
2
votes
2answers
47 views

inside try block a FileIStream variable might not have been initialized error

I am trying to execute this code and I am also providing the valid argument but still I am getting error at line no. 34 and 35 that local variable fin and fout might not have been initialized. How to ...
0
votes
1answer
51 views

WAV File writing Issue from another wav file

In my program I had to remove certain frames from video and audio so that advertisments are removed. The video is stored in .rgb file and audio is stored in .wav file. The video is working fine. But ...
0
votes
1answer
26 views

Can I set the file index to the start of the file?

I want to be able to read an object from a file after I streamed one out to it. Now, It works fine when I am reading at the first time, but when I'm trying to read again (to another object), there is ...
0
votes
2answers
48 views

ObjectOutputStream not saving in custom class

I made my own custom class, and I can't figure out what's wrong with it. More specifically my question is what differences exist between making a class for android instead of Java. I mean, according ...
0
votes
2answers
140 views

Upload file Servlet on hardcoded server path

I have a .jsp page that show a file browser and a upload button and a Servlet that should upload the file to server . The problem is that the file is uploaded to a temporary folder but I need it to be ...
0
votes
1answer
38 views

ObjectOutputStream(FileOutputStream) pointer modification

I can't understand if doing what is said in the title with the streams, if I use the object stream to write an object to a file, does it shift the filestream's pointer and when I use it, after, to ...
0
votes
2answers
48 views

Newlines in string not passing out to file

i saw similar issie Newlines in string not writing out to file but it didnt helped me , this is my code try { String StringBudy ...
0
votes
1answer
139 views

Java: fileoutputstream (access denied )

I am using AESCrypt open source library to encrypt file. This is my code String password="asdfgh"; String frompath=new String("C:/Users/sabertooth/Desktop/error/pnberror.png"); String topath=new ...
0
votes
1answer
32 views

Add HttpCookie after OutputStream EndWrite [closed]

i want to add HttpCookie after this code : zipFile.Save(context.Response.OutputStream); how can i do this? any idea?
1
vote
1answer
61 views

Android NullPointerException when savin picture (FileOutputStream - write method)

I recently got a crash report in an Android App that takes photographs and saves them on SD card. I tried to reproduce it, but it was unsuccessful. The stack trace is the following > ...
0
votes
2answers
47 views

Cropping an uploaded image with Java

I am reading a image file in a servlet from an http request. I want to crop it as a square and write it to file. I can achieve that with the following code but i am using a temporary file to write the ...
-1
votes
2answers
120 views

JAVA - Write binary number to a file and read it

How can i write to a file a binary number without it to cut the zeros . I'm writing like this : byte[] b = new BigInteger("1011010101010110", 2).toByteArray(); FileOutputStream fos = new ...
0
votes
2answers
48 views

File not visible after writing android

I am trying to write some json data to the file, below is what i have tried. JSONObject obj = new JSONObject(); try { obj.put("name", "mkyong.com"); } catch (JSONException e2) { ...
1
vote
2answers
95 views

FileOutputStream opens a new file and deletes the contents whenever it is created

I'm dealing with serialization and deserialization in files. Moreover, i'm stack about using FileOutputStream with ObjectOutputStream. The issue is i have server/client chat application and whenever a ...
0
votes
1answer
98 views

Saving Gallery Image (Wallpaper) to SD Card (Closed)

Im trying to figure out how to make this code work and im loss for answer's. My code is simply a wallpaper selector, code pulled from the AOSP source. Im adding a button which will save the current ...
0
votes
1answer
68 views

Perisistant data from ArrayList

Pretty much all day today I've been trying to figure this out but I can't seem to get it right. I understand how to use the File-Output/Input-Stream. However since ArrayList is not an "int" I can't ...
1
vote
1answer
90 views

java socket fileoutputstream can't close file

i've write a code for transferring file over sockets, the file is transfers properly but it isn't closed even after calling .close() method. however the file closes after closing the "sockets", but i ...
1
vote
2answers
117 views

Write chinese characters from one file to another

I have a file with Chinese characters text inside, I want to copy those text over to another file. But the file output messes with the chinese characters. Notice that in my code I am using "UTF8" as ...
0
votes
1answer
55 views

Android app deletes file upon full exit (exit from task manager)

I have a data store class that tried to adapt from an iOS Project. It works well for iOS, and it almost works for my android project, however, when exiting the android app from task manager, the file ...
0
votes
4answers
24 views

Android: Getting into right condition using fileinputstream

I'm facing a different problem, see below is the code for my app that can read stored file and have to check condition according to that. My inputs are "ON" and "OFF" String val=""; final ...
0
votes
0answers
71 views

Android: Open file with specific path [duplicate]

I try to create file ^ set some text ^ and then to read it , but i get "java.lang.IllegalArgumentException: File /mnt/sdcard/new.txt contains a path separator" on line (75) - FileInputStream fis = ...
1
vote
1answer
131 views

Why does this FileOutputStream give a NullPointerException?

so I am running an app that creates a NullPointerException when I try to write a file. My first activity (see below) calls the NewSet activity when the user presses the new set button. When I try to ...
0
votes
1answer
142 views

Converting file to byte array and transmitting it with UDP. How to get file name on server from this array of bytes?

So I read a file into a byte array and then I break it up into chunks and send it across the network with UDP. Path path = Paths.get("files_upload/music.mp3"); byte[] objectBytes = ...
0
votes
1answer
51 views

Android bulk file output from ZIP file

I download a pretty large zip file from online, and then want to extract it to my application's storage. This takes a decent amount of time right now, and I was wondering if there were any suggestions ...
0
votes
1answer
158 views

Saving using File output stream from Edittext in only one file

kindly i need to save from edit text to a file or list using file output stream, however each time I save with name written in the edit text a new file is created, how can I make an only one file and ...
0
votes
0answers
99 views

Android App: Preview freezes / NPE

This is my first Android Application, I'm using a Camera Preview and a FileOutputStream to save the Picture on my SD-Card. In the App, i want to make a single Picture or a serial Row of Pictures by ...
1
vote
1answer
129 views

Storing key using KeyStore in Android

I am using KeyStore to protect my private key but when the line: FileOutputStream fos = ctx.openFileOutput("bs.keystore", Context.MODE_PRIVATE); is executed I have this exception: ...
2
votes
3answers
120 views

Read the five score in a textfile then print them back with the new score added to the list - ANDROID

In my program when the player submits a score it gets added to a local text file called localHighScores. This is list of the top five score the player has achieved while on that specific device. I ...
0
votes
1answer
193 views

Making a temp file and rename it on Android internal memory

I have a .txt file which contains let's say 1;2;3;4;5 a;b;c;d;e A;B;C;D;E And I would like to remove the line which begins with "a" I made a copy of the file and write there the lines unless the ...
1
vote
1answer
231 views

How to read/write a string encoded with android.util.Base64

I would like to store some strings in a simple .txt file and then read them, but when I want to encode them using Base64 it doesn't work anymore: it writes well but the reading doesn't work. ^^ The ...
1
vote
0answers
35 views

Adding common log format into a log file for a simple Apache server

I'm a beginner in java and I'm currently creating simple Apache server and I am trying add this kind(a sample log entry) of format format for my log file; 66.249.64.13 - - [18/Sep/2004:11:07:48 ...
0
votes
0answers
261 views

Recording video using MediaRecorder and FileOutputStream produces video file that can't be played

I am trying to implement the function where i can start and stop the video recording multiple times, and accumulate video data into a File. This is how i prepare my media recorder: private boolean ...
2
votes
3answers
118 views

Difference between FileOutputStream and PrintWriter

I am implementing SSL certificate and key in my application. I have created private key using CertAndKeyGen class. I am trying to encrypt the private key with a password, which I have achieved it ...
0
votes
1answer
628 views

Android - Uncaught exception thrown by finalizer

I have this piece of code that takes the server response and writes it into a file. The file contains json data. I write response into file in order to scan json sequentially and to avoid to load ...
1
vote
2answers
276 views

FileOutputStream does not create file

I actually checked other posts that could be related to this and I couldn't find any answer to my question. So, had to create this newly: The file does not get created in the given location with this ...
0
votes
3answers
240 views

Best way to save arraylist to androids memory

I have a bundle passed from one activity to another. That contains String n (the length is max 30), String ID and String color. I need to save these values to an ArrayList as an array (n, ID, color) ...

1 2 3 4 5