The java-io tag has no wiki summary.
32
votes
6answers
20k views
java.io.Console support in Eclipse IDE
I use the Eclipse IDE to develop, compile, and run my Java projects. Today, I'm trying to use the java.io.Console class to manage output and, more importantly, user input.
The problem is that ...
20
votes
9answers
8k views
How do I list the files inside a JAR file?
I have this code which reads all the files from a directory.
File textFolder = new File("text_directory");
File [] texFiles = textFolder.listFiles( new FileFilter() {
public ...
15
votes
5answers
21k views
java inputstream read blocking
According to the java api, the InputStream.read() is described as:
If no byte is available because the
end of the stream has been reached,
the value -1 is returned. This method
blocks until ...
11
votes
7answers
11k views
Converting transparent gif / png to jpeg using java
I'd like to convert gif images to jpeg using Java. It works great for most images, but I have a simple transparent gif image:
[In case the image is missing: it's a blue circle with transparent ...
8
votes
8answers
21k views
Streaming large files in a java servlet
I am building a java server that needs to scale. One of the servlets will be serving images stored in Amazon S3.
Recently under load, I ran out of memory in my VM and it was after I added the code to ...
7
votes
2answers
1k views
Should I buffer the InputStream or the InputStreamReader?
What are the differences (if any) between the following two buffering approaches?
Reader r1 = new BufferedReader(new InputStreamReader(in, "UTF-8"), bufferSize);
Reader r2 = new InputStreamReader(new ...
7
votes
8answers
2k views
Java I/O streams; what are the differences?
java.io has many different I/O streams, (FileInputStream, FileOutputStream, FileReader, FileWriter, BufferedStreams... etc.) and I am confused in determining the differences between them. What are ...
6
votes
6answers
335 views
What is wrong with FileInputStream.read(byte[])?
In response to my answer to a file-reading question, a commenter stated that FileInputStream.read(byte[]) is "not guaranteed to fill the buffer."
File file = /* ... */
long len = file.length();
...
5
votes
2answers
812 views
Java.io: BufferedReader readLine() block question
I am using BufferedReader.readLine() method to read a response from a remote server(which is written in c and I have no access to source code).
Here's the code
BufferedReader br = new ...
5
votes
3answers
2k views
What is the buffer size in BufferedReader?
What is the sense of buffer size in the constructor?
BufferedReader(Reader in, int size)
As i have written the program:
import java.io.*;
class bufferedReaderEx{
public static void main(String ...
5
votes
5answers
2k views
Should I always wrap an InputStream as BufferedInputStream?
Does it make sense to always wrap an InputStream as BufferedInputStream, when I know whether the given InputStream is something other than buffered? For e.g:
InputStream is = API.getFromSomewhere()
...
4
votes
3answers
178 views
reduce number of opened files in java code
Hi I have some code that uses block
RandomAccessFile file = new RandomAccessFile("some file", "rw");
FileChannel channel = file.getChannel();
// some code
String line = "some data";
ByteBuffer buf = ...
4
votes
5answers
1k views
How can i zip files in Java and not include files paths
For example, I want to zip a file stored in /Users/me/Desktop/image.jpg
I made this method:
public static Boolean generateZipFile(ArrayList<String> sourcesFilenames, String destinationDir, ...
4
votes
5answers
625 views
Windows temporary file in Java
How to create a file in Windows that would have attributes FILE_ATTRIBUTE_TEMPORARY and FILE_FLAG_DELETE_ON_CLOSE set using Java?
I do want my file to be just in-memory file.
To precise: ...
4
votes
3answers
199 views
Shouldn't ObjectInputStream extend FilterInputStream?
The block quotes are from the Java Docs -
A FilterInputStream contains some
other input stream, which it uses as
its basic source of data, possibly
transforming the data along the way or
...
3
votes
2answers
96 views
Java - Object Stream efficiency over network
Quick design question: I need to implement a form of communication between a client-server network in my game-engine architecture in order to send events between one another.
I had opted to create ...
3
votes
1answer
93 views
Sending image as text in java
Is it possible to read image as text and send it over network? Is yes, then how can we do this?
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
164 views
Editing a 1MB file continuously, what's more efficient?
I've to be continuously editing a 1MB file, simulating a file system. I've to modify the directory of File Control Blocks, FAT, blocks, etc.
Proffesor recommended overwriting the file every time an ...
3
votes
1answer
856 views
Java: opening and reading from a file without locking it
I need to be able to mimic 'tail -f' with Java. I'm trying to read a log file as it's being written by another process, but when I open the file to read it, it locks the file and the other process ...
3
votes
4answers
6k views
Process Builder waitFor() issue and Open file limitations
I have inherited some code:
Process p = new ProcessBuilder("/bin/chmod", "777", path).start();
p.waitFor();
Basically, there is for some ancient and highly voodoo based reason for storing key/value ...
3
votes
3answers
2k views
Best Way to Write Bytes in the Middle of a File in Java
What is the best way to write bytes in the middle of a file using Java?
3
votes
3answers
2k views
I Am Not Getting the Result I Expect Using readLine() in Java
I am using the code snippet below, however it's not working quite as I understand it should.
public static void main(String[] args) {
BufferedReader br = new BufferedReader(new ...
2
votes
2answers
39 views
Take a List as an Input in socket programming
I want to receive a List as input, Java is showing me no error in:
List<String> A;
ObjectOutputStream ins = new ObjectOutputStream(soc.getOutputStream());
ins.writeObject(A);
The above ...
2
votes
3answers
75 views
Update an existing string in a file
I have to edit the existing file named root.propertis and update it without saving in to another file
Following is the sample proprety file.
root.label.getmore=Mehr Apps
root.msg.apps=Apps
...
2
votes
1answer
278 views
Trouble saving file in SD card with special characters in filename
My application has a function to save file on SD card.
Following is my code to save the file
try {
File mediaDir = new File(
Environment.getExternalStorageDirectory(), ...
2
votes
4answers
203 views
Most efficient merging of 2 text files.
So I have large (around 4 gigs each) txt files in pairs and I need to create a 3rd file which would consist of the 2 files in shuffle mode. The following equation presents it best:
3rdfile = (4 lines ...
2
votes
6answers
476 views
Append .txt file to a TextArea in Java
I've seen a lot of websites that describe how to append text into a textarea, but is there a way to grab data from a whole .txt file and display it in the textarea?
I've been playing around with ...
2
votes
5answers
103 views
Java stream misconceptions… some clarification?
I understand that byte streams deal with bytes and character streams deal with characters... if I use a byte stream to read in characters, could this limit me to the sorts of characters I might read? ...
2
votes
1answer
123 views
Modify Printing attribute for Media Name Java Apache FOP API
Am using Apache FOP API to print a document which was working well for a while but now it is trying to print on a legal size paper on tray 1. Am wondering if i can change that to Letter size so that ...
2
votes
4answers
169 views
Why is java.io.Reader#skip implemented the way that it is?
I'm still learning object-oriented programming in Java. I was looking at the Java implementation of java.io.Reader.skip and I'm wondering why exactly it's implemented the way that it is. In particular ...
2
votes
3answers
376 views
stitch images together in java
I'm trying to stitch some images together using java. I have a bunch of images I'd like to stitch together and they are all the same dimensions so it's really just a question of lining them up next ...
2
votes
1answer
188 views
Problem accessing file from jar file in Java
I have a jar called App.jar and it's structure is as follows
App.jar
|
|
|---xyzfolder
| |
| |--config
| |
| |--config.properties
| ...
2
votes
4answers
99 views
Bits stream reading order
I've read in manual:
For bit-oriented delivery, the bit
order for the byte stream format is
specified to start with the MSB of the
first byte, proceed to the LSB of the
first byte, ...
2
votes
2answers
511 views
Checking if a number entered is odd
`I'm not sure what code to insert or even where, but I would like to check the number I enter is an odd number.
import java.io.*;
import javax.swing.JOptionPane;
public class Diamond {
public ...
2
votes
3answers
213 views
read whole file in a folder
Is there a way in Java where I can specify a directory in java and it reads the whole file one by one?
Otherwise is there a way to do a regex file read in java? So if all the files in the folder all ...
2
votes
1answer
173 views
FileBackedOutputStream use case (Guava)
I came across FileBackedOutputStream class from Google Guava library and was wondering if it's suitable to be used as a kind of a buffer: once every day, a process in my webapp generates tens of ...
2
votes
2answers
498 views
How do I read and write to a file using threads in java?
I'm writing an application where I need to read blocks in from a single file, each block is roughly 512 bytes. I am also needing to write blocks simultaneously.
One of the ideas I had was BlockReader ...
2
votes
1answer
622 views
Axis2 File Upload by chunk
I'm trying to upload file using Axis2 web service by 1024 chunk size.
My server side looks like this:
public void appendChunk(int count, byte[] buffer){
FileOutputStream fos = null;
try {
...
2
votes
1answer
251 views
Converting TrueColor with alpha image to 256 colors with transparency image
I wrote a java app to capture screen into true color images, make parts of them transparent, and write them to disk as PNG files with transparency using ImageIO. Now to conserve space I am thinking of ...
2
votes
1answer
326 views
Strange FileInputStream/DataFileInputStream behaviour: seek()ing to odd positions
The good:
so, I have this binary data file (size - exactly 640631 bytes), and I'm trying to make Java read it.
I have two interchangeable classes implemented as layers for reading that data. One of ...
2
votes
3answers
379 views
FileWritter and InputStream in java
Before when I use file in my fileWritter it worked, but now since I'm using getResourceAsStream instead of file how can I make it work?
FileWriter fstream = new FileWriter(new File("filename"), ...
2
votes
2answers
74 views
Lackadaisical one-to-one between char and byte streams
I expected to have a one-to-one correspondence between the character streams and byte streams in terms of how the classes are organized in their hierarchy.
FilterReader and FilterWriter (character ...
2
votes
3answers
146 views
Is there a java library / package analogous to <stdio.h>?
I have been doing Java on and off for about 14 years, and almost nothing else the last 6 years or so.
I really hate the java.io package -- its legion of subclasses and adapters. I do like ...
2
votes
3answers
1k views
java IO to copy one File to another
I have two Java.io.File objects file1 and file2. I want to copy the contents from file1 to file2. Is there an standard way to do this without me having to create a method that reads file1 and write to ...
2
votes
3answers
3k views
java : writing large files?
Greetings ,
I get huge number of records from database and write into a file.I was wondering what the best way to write huge files. (1Gb - 10Gb).
Currently I am using BufferedWriter
BufferedWriter ...
2
votes
1answer
547 views
How do I correct this silent failure to write files using Java IO?
I am encountering a strange issue with the commons-io/java-io. Essentially my file creation is failing silently without an exception.
FileUtils.writeLines(file, collectionOfStrings);
I've looked ...
2
votes
4answers
3k views
Can apache FileUtils.writeLines() be made to append to a file if it exists
The commons FileUtils look pretty cool, and I can't believe that they cannot be made to append to a file.
File file = new File(path);
FileUtils.writeLines(file, printStats(new DateTime(), ...
1
vote
4answers
33 views
Error in a Simple Socket program
I am not able to send the data on the second instance. The server just waits infinitely for client data
Here is my sample server code snippet:
ServerSocket serv = new ServerSocket(6789);
Socket ...
1
vote
1answer
76 views
base64 decoded file is not equal to the original unencoded file
I have a normal pdf file A.pdf , a third party encodes the file in base64 and sends it to me in a webservice as a long string (i have no control on the third party).
My problem is that when i decode ...