Tagged Questions

11
votes
5answers
9k views

getResourceAsStream() vs FileInputStream

I was trying to load a file in a webapp, and I was getting a FileNotFound exception when I used FileInputStream. However, using the same path, I was able to load the file when I did ...
6
votes
6answers
272 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
4answers
539 views

Usage of BufferedInputStream

Let me preface this post with a single caution. I am a total beginner when it comes to Java. I have been programming PHP on and off for a while, but I was ready to make a desktop application, so I ...
4
votes
4answers
627 views

Why is the FileInputStream read() not blocking?

I've got a Writer program that writes one line of text to a file, then waits until the user hits return before it writes another line and then exits. Only after that is the file closed. The code: ...
4
votes
9answers
2k views

Read data from a text file using Java

I need to read a text file line by line using Java. I use available() method of FileInputStream to check and loop over the file. But while reading, the loop terminates after the line before the last ...
3
votes
2answers
170 views

Cant find the newline character in a file (java)

I am trying to get the last line of a file, but my output shows that it never finds it. I also tried looking for "[" which all the lines start with, but unless the jumps were perfect the program will ...
3
votes
3answers
73 views

Is FileInputStream using buffers already?

When I am using FileInputStream to read an object (say a few bytes), does the underlying operation involve: 1) Reading a whole block of disk so that if I subsequently do another read operation, it ...
3
votes
2answers
168 views

Equivalent to FileInputStream in J2ME?

Is there any equivalent to FileInputStream in J2ME?
3
votes
4answers
702 views

how to write content in a Specific position in a File

Suppose I have a file named abhishek.txt and that contains the following line I am , and what is your name. Now I want to write Abhishek after "I am" like I am Abhishek, .. How to write ...
3
votes
2answers
576 views

ObjectInputStream happy with FileInputStream, not happy with getResourceAsStream

I have some pretty standard code which takes in a serialized object from a stream, which bascially looks like this: Object getObjectFromStream(InputStream is) { ObjectInputStream ois = new ...
3
votes
5answers
3k views

Java FileInputStream ObjectInputStream reaches end of file EOF

I am trying to read the number of line in a binary file using readObject, but I get IOException EOF. Am I doing this the right way? FileInputStream istream = new FileInputStream(fileName); ...
3
votes
2answers
1k views

java FileInputStream - differences based on how the File object is referenced: classloader/filesystem

I'm using apache POI to extract some data from an excel file. I need an InputStream to instantiate the POI HSSFWorkbook class HSSFWorkbook wb = new HSSFWorkbook(inputStreamX); I'm finding ...
3
votes
2answers
6k views

Reading an XML File using FileInputStream (for Java)?

here's the deal. For my project I have to serialize and deserialize a random tree using Java and XStream. My teacher made the Tree/RandomTree algorithms, so I don't have to worry about that. What I ...
2
votes
1answer
34 views

How can I retrieve the original File of a FileInputStream

I need based on the APIs I use, to implement a method with an InputStream parameter (instance of FileInputStream) that will call a method with a File argument. implementedMethod(InputStream is){ ...
2
votes
2answers
66 views

Do Struts2 close the “InputStream” after they have got the result?

I have an action in struts 2 where it opens an FileInputStream, reads an image and shows it in a jsp. The question is that when struts is finished with getting the image, will it automatically take ...
2
votes
2answers
57 views

Closing a FileInputStream used by struts' stream result

My web application generates an XML file. I'm using a Struts2 stream result to manage the download, here's the action in struts.xml: <action name="generateXML" ...
2
votes
2answers
104 views

Modify the bytes read by an InputStream while reading, not later

I need to make a simple sort of encryption so that the normal end user can't access some files easily. The files that are read by an FileInputStream are html files, pngs, jpegs and different simple ...
2
votes
2answers
117 views

How to restore a text file?

I want to restore the following data from the text file. The problem is only one string/line I can restore, I can't restore the rest of the data. Here's the code : public static String ...
2
votes
1answer
133 views

Base64 decoding using apache commons codec failing on very large binary file

I am developing an encryption tool, and for our encrypted file format I am using Base64 to encode data. I am using apache commons codec to decode files using a Base64InputStream wrapped around a ...
2
votes
3answers
184 views

how to parse unicode that is read from a file in java

I have written a text file with the following contents: \u0032\u0142o\u017Cy\u0142 Then I have used FileReader und BufferedReader to read the file. public static void main(String[] args) throws ...
2
votes
6answers
2k views

Java: reading strings from a random access file with buffered input

I've never had close experiences with Java IO API before and I'm really frustrated now. I find it hard to believe how strange and complex it is and how hard it could be to do a simple task. My task: ...
1
vote
1answer
51 views

How can I send a generic file to a jersey service and receive it correctly?

I'm developing a Jersey service that uses Dropbox's API. I need to post a generic file to my service (the service would be able to manage every kind of file as well as you can do with the Dropbox ...
1
vote
2answers
52 views

Game Settings file prob

Hi I'm working on a settings loader system and it doesn't want to work, I have tried different ways of doing it and this one looks the best, except it not working, can I please have some help because ...
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
125 views

sending a file using DataOutputStream in java

I am trying to build a client that sends the file size and contents to server. I am trying to use DataOutputStream. I am assuming that I need to open the file and and get size of file and read the ...
1
vote
3answers
140 views

Parsing data from text file into multiple arrays in Java

Let me start by saying I am fairly new to Java so forgive me if I am making obvious mistakes... I have a text file that I must read data from and split the data into separate arrays. The text file ...
1
vote
4answers
89 views

How do you differentiate -1 from 0xff when reading a byte from a Java FileInputStream?

So, I had to take a test for a job interview where I was required to write a mini app that performed simple XOR encryption, and came across this question. I used a FileInputReader to pull each byte ...
1
vote
3answers
82 views

strip data from text file using regex

Im going to start by posting what the data from the text file looks like, this is just 4 lines of it, the actually file is a couple hundred lines long. Friday, September 9 2011 5:00AM - ...
1
vote
1answer
73 views

strip data from a text file

Im going to start by posting what the date in the text file looks like, this is just 4 lines of it, the actually file is a couple hundred lines long. Friday, September 9 2011 -STV 101--------05:00 - ...
1
vote
4answers
198 views

How to pass an InputStream via RMI

Consider these two functions: Function A takes inputStream as parameter. public void processStream(InputStream stream) { //Do process routine } Function B loads a file content to pass it to ...
1
vote
2answers
37 views

Error in a middle of writing to outputstream handling

I'm building an httpserver as part of my academic java course, The server should only support basic GET and POST requests. I was wondering if there's an elegant way to handle an error which occures ...
1
vote
1answer
580 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
1answer
182 views

(Java) File redirection (both ways) within Runtime.exec?

I want to execute this command: /ceplinux_work3/myName/opt/myCompany/ourProduct/bin/EXECUTE_THIS -p cepamd64linux.myCompany.com:19021/ws1/project_name < ...
1
vote
2answers
81 views

Read an external file from a Jar

I am using below mentioned code to read a file (.cer file) from a java class. The java class will be bundled inside a Jar and then be included into a EAR. FileInputStream inStream = new ...
1
vote
3answers
926 views

Java read object input stream into arraylist?

The method below is supposed to read a binary file into an arrayList. But getting a java.io.EOFException: at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2553) at ...
1
vote
2answers
2k views

Java fileinputstream using with url

How to input in the fileinputstream, a file tro url ? I enter the url in the fileinputstream, but the output of the url is wrong, becouse the link slashes are turned backwards like - from / to \ and ...
1
vote
3answers
234 views

How can I recognize a special delimiter string when reading from a file of strings?

I want to read strings from a file. When a certain string (><) is found, I want to start reading integers instead, and convert them to binary strings. My program is reading the strings in and ...
1
vote
2answers
385 views

intercepting http file upload using TCP/IP

I have written one proxy for intercepting the http requests for my tomcat. every request would go through my proxy and do some checking before it reaches the tomcat server. i am doing it by binding ...
1
vote
4answers
434 views

FileInputStream Memory Leak in file read loop

we're facing a memory leak using a simple, simple, simple code as follows. The code is intended to get files from a source, use each file to do something and go on. This simple code uses always the ...
1
vote
1answer
350 views

FileInputStream with path contains wildcard

I am getting full path for some files from database and then zip those files inside that path. So problem here is the path contains wildcards even for the directory and files too. Eg: ...
1
vote
2answers
588 views

zip a folder structure using java

I am trying to zip the following file structure on my machine, parent/ parent/test1 parent/test1/image1.jpeg parent/test2 The problem here is i cant zip the above file structure using java. I have ...
1
vote
3answers
686 views

FileReader vs FileInputReader. split vs Pattern

I'm working with a file with about 2G. I want to read the file line by line to find some specific terms. Whitch class can I better use: FileReader or FileInputStream? And how can I find the specific ...
1
vote
2answers
1k views

How to load a config xml file with FileInputStream, but getting a FileNotFoundException

My build path in Eclipse looks like this: ProjectName -- WEB-INF -- classes -- myClass.class -- configs -- myConfig.xml My absolute path to the config currently ...
1
vote
3answers
2k views

How can I access a txt file in a jar with FileInputStream?

I am aware of the getResourceAsStream() method but there is an issue with the parser that reads the file, the whole structure was implemented to expect a FileInputStream() and the ...
1
vote
1answer
211 views

Java Gridgain application starts to fail after 1 day of stress testing

So I have a an application which is running on top of gridgain and does so quite successfully for about 12-24 hours of stress testing before it starts to act funny. After this period of time the ...
1
vote
4answers
2k views

Using Java's FileInputStream

In java.io.FileInputStream, there is a method int read(Byte[] buffer,int offset,int numBytes); how we can use this function - is there any difference between this method and read(byte[] buffer)?
1
vote
3answers
3k views

Get FileNotFoundException when initialising FileInputStream with File object

I am trying to initialise a FileInputStream object using a File object. I am getting a FileNotFound error on the line fis = new FileInputStream(file); This is strange since I have opened this file ...
0
votes
1answer
46 views

why does this reader read off strange bits of data?

I'm trying to read a text file, i'm using fileImputStream, and reading all the lines into a single String then outputing it into the console (System.out) When I try to read the humanSerf.txt, it ...
0
votes
0answers
35 views

Java custom retrieveMap() fileInputStream failing

I have this method which stores a treemap. Now the treeMap is populated with 366 items. The method below works because the file is created in thr src directory: public boolean ...
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 ...

1 2