Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
270 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
533 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
5answers
241 views

C++ Line into Vector

Wow I've been all over the place with questions today and I apologize if they seem to overlap, but for every question comes another question...Since one thing wont work......but I should use something ...
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
167 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
695 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
575 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
65 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
56 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
0answers
120 views

Android FileInputStream FileNotFoundException even though permissions in place, file exists, storage is mounted, can read etc

I'm a beginning developer for Android and running into the following problem when trying to access an XML file on the SD card. To start, I performed the following checks: - Permission to read/write ...
2
votes
2answers
103 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
1answer
50 views

generic input tracing with a debugger (e.g pydbg, ollydbg etc.)

let us assume that there is a application (i have its executable) that reads a file (of some unknown format). I want to trace the input (e.g. a file) that is parsed by a executable i.e. I want to know ...
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
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
188 views

Opening a 12kb text file takes WAY too long…?

The following code works, but takes way too long (over a minute) to open a small file. The LogCat shows a lot of instances of "GC_FOR_MALLOC freed #### objects / ###### bytes in ##ms". Any ...
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: ...
2
votes
3answers
275 views

C++ How to read in objects with a given offset?

Now I have a file with many data in it. And I know the data I need begins at position (long)x and has a given size sizeof(y) How can I get this data?
1
vote
1answer
50 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
3answers
81 views

Specify folder path to XML file in Android

I put my employeedetailxml into a folder named "res\raw". When I attempt to open it by specifying the file and folder name, I get the error "file not found". How can I specify the path to my file? I ...
1
vote
1answer
123 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
136 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
197 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
574 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
178 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
914 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
1answer
283 views

Image uploaded from the android app space seems corrupted

In my android application, I need to upload a image in my Assets/Drawable/raw folder to the server. I tried the following: InputStream fileInputStream; if(imageChanged) { File file = New ...
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
2answers
71 views

.get function with an opened file stream in C++

I have an open input file stream. It is able to open the other file (a txt file) successfully. And by making adjustments to the code right below I can get it read and output the other txt file (all ...
1
vote
3answers
233 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
246 views

How to give a FileInputStream to a Videoview?

I would like to know how to give a FileInputStream to a Videoview. I can see that we have an API like setDataSource() for mediaplayer, in which you can give a file descriptor. Is this same kind of ...
1
vote
2answers
383 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
431 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
349 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 2