0
votes
1answer
61 views
+50
Cipher Output and Input Streams
I'm attempting to store some encrypted data in the Android filesystem. I'm getting errors I don't understand and empty files. Please help.
Code:
private Cipher cipher;
private ...
0
votes
3answers
128 views
Exception In Inserting Image Into SQL Table Using BLOB Object
I am getting the exception in the following code
PreparedStatement pstmt;
Connection conn = DriverManager.getConnection(
"jdbc:jtds:sqlserver://Irfan:1433/Pictures", "sa", "ent@");
...
0
votes
2answers
54 views
How to download whole file from website
I folow this example: http://www.mkyong.com/java/how-to-download-file-from-website-java-jsp
File file = new File("path/to/file/test.txt");
FileInputStream fis= new FileInputStream(file);
...
0
votes
2answers
387 views
read file from inside jar Not Working
In Java, I have tried the different techniques of reading a file inside the jar. I have gotten one to work inside another program, but not this one. The InputStream that I get from the ...
2
votes
4answers
242 views
How to display inputstream in JTextArea?
This is to get stream from server.
BufferedReader fromserver = new BufferedReader(
new InputStreamReader(client.getInputStream()));
jTextArea1 is the object. How to display the input stream in ...
1
vote
3answers
375 views
InputStream from Assets folder on Android returning empty
I'm not getting any exceptions, but when I run...
InputStream deckFile = context.getAssets().open("cards.txt");
Then, deckFile.read() returns -1. The file is in the correct folder, and it is NOT ...
2
votes
1answer
155 views
Why InputStreamReader doesn't read process' output in real time?
I am trying to use ProcessBuilder to run some external commands, like ifstat or vmstat in Linux.
Such kinds of commands support custom sampling intervals. If I add a sample interval to the external ...
3
votes
3answers
74 views
end of stream in JAVA
I am confused by the following statement that appears here
The basic read() method of the InputStream class reads a single
unsigned byte of data and returns the int value of the unsigned byte.
...
4
votes
2answers
357 views
How to chain multiple different InputStreams into one InputStream
I'm wondering if there is any ideomatic way to chain multiple InputStreams into one continual InputStream in Java (or Scala).
What I need it for is to parse flat files that I load over the network ...
0
votes
3answers
80 views
Can't read in HTML content from valid URL
I am trying out a simple program for reading the HTML content from a given URL. The URL I am trying in this case doesn't require any cookie/username/password, but still I am getting a io.IOException: ...
0
votes
2answers
75 views
Application hangs when attempting to retrieve text from an inputstream
Situation
I've been creating a program to exchange messages between two computers in the LAN. One computer identifies itself as the server while the other is a client. Upon startup, the user has to ...
0
votes
1answer
77 views
How can we scan a 100 bytes from STDIN in one go in C++
The scanner waits till we enter 100 bytes of data. So if we are redirecting a file into the
executable's input, if the file has > 100 bytes of data. I scan it at one go, rather than line by line with ...
-3
votes
1answer
111 views
Is InputStream.close() a blocking call in java?
I read from an input stream and in my finally block try to close it by calling in.close();
However the execution of main gets blocked . What is the way out ?
On suggestion , the code I used is ,
if ...
1
vote
4answers
221 views
Returning an InputStream from a public method
I have a class where on the one hand, it feels right to return an InputStream from a public method, e.g.
public class MyClass {
private File _file;
...
public InputStream ...
6
votes
1answer
1k views
Is Socket.getInputStream().read(byte[]) guaranteed to not block after at least some data is read?
The JavaDoc for the class InputStream says the following:
Reads up to len bytes of data from the input stream into an array of
bytes. An attempt is made to read as many as len bytes, but a ...
3
votes
2answers
234 views
InputStream when partial name is known? (Android)
I'm gonna read a file whose name is partially known. Let's say I have few files like the followings:
apple_5_34.jpg
orange_3_67.bmp
banana_1_13.gif
And I want to get the InputStream to those ...
0
votes
0answers
57 views
SequenceInputStream and UTF-16 encoding
I tried to create a SequenceStream of UTF-16 encoded files:
public class sequenceStream {
public static void main(String[] args) {
try {
File f1 = new ...
0
votes
1answer
153 views
Listen to multiple InputStreams?
I am in the processes of making a Chat Program in Java in style with IM programs like MSN. Now, my program won't be near as full of features as MSN is, nor will i dive into the extensive GUI design ...
0
votes
3answers
254 views
fseek does not work in linux [duplicate]
Possible Duplicate:
Using fseek with a file pointer that points to stdin
i have a program that use fseek to clear my input buffer, it works well in Windows, buf fails in Linux. Please help ...
0
votes
1answer
139 views
Write file if not existing
I am trying to create a block that writes a file when the file doesn't exsist, but it has turned into a Catch-22. The file doesn't exist, so it can't write the file so it can exsist. Here is my ...
1
vote
1answer
498 views
Reading a text file in my .jar
Lets say i'm making a program that needs to copy all the lines in a .txt file within my .jar file. it is in the package program.files and it is named text.txt. I've been looking all over the internet, ...
4
votes
1answer
116 views
When does InputStream.skip() skips lesser than expected bytes?
In my logger code, I am using FileInputStream for reading the log files. The number of bytes in the file that were last read from the log file 'byteOffset' is stored. Whenever the reader has to read ...
0
votes
1answer
306 views
Lazy access to InputStream by offering InputStream getter
An API that I'm implementing deals with InputStreams containing hierarchically structured data i.e. nested blocks, including a number of images in the leaf blocks. (If you must know, it is CBEFF data ...
0
votes
0answers
83 views
Having trouble with ChunkInputStream reading a chunk id tag
I have been working on a audio/video container (like AVI) for use with Java and I have run into a error when reading a chunk id tag from the file. Following is the error that I have encountered;
...
0
votes
2answers
962 views
Reading multiple records from a flat file in Java
I have a text file dump that I need to convert to a delimited file. The file contains a series of "records" (for lack of a better word) formatted like this:
User: abc123
Date: 7/3/12
Subject: the ...
3
votes
1answer
211 views
Re-Assembling a splitted file correctly
Please have a look at the following code
package normal;
import java.io.*;
import java.util.*;
public class ReGenerateFiles
{
private File inputFolder, outputFolder;
private String ...
3
votes
1answer
100 views
Class / Interface for getting a Reader / InputStream
Simple question: Is there a class or interface that encapulates the getting of a Reader or an InputStream?
What I want is to be able to for example read from a File twice, or a URL twice, and ...
-1
votes
2answers
1k views
Underlying stream returned zero bytes
I'm currently writing my own Brainfuck interpreter in Java and because I want it to be able to read code from files I wrote a BFInputStream that filters unnecessary symbols out. It looks like this:
...
3
votes
3answers
903 views
How to load a classpath resource to an array of byte?
I know how to get the inputstream for a given classpath resource, read from the inputstream until i reach the end, but it looks like a very common problem, and i wonder if there an API that I don't ...
2
votes
2answers
4k views
Receive byte[] using ByteArrayInputStream from a socket
Here is the code but got error:
bin = new ByteArrayInputStream(socket.getInputStream());
Is it possible to receive byte[] using ByteArrayInputStream from a socket?
2
votes
1answer
1k views
how to split an InputStream/OutPutStream in android
I am uploading a stream to server.But my Input-stream contain a big video file.So i want to split it in different Input-stream and then i will send them one by one.
I have gone through a question ...
-1
votes
3answers
2k views
Java - Read file by chunks?
I know how to read a file by bytes but cannot find a example how to read it in chunks of bytes. I have a byte array, and i want to read the file by 512bytes and send them over a socket.
I have tried ...
3
votes
3answers
962 views
Java OutputStream Skip (offset)
I am trying to write a function that takes File object, offset and byte array parameters and writes that byte array to a File object in Java.
So the function would look like
public void write(File ...
0
votes
1answer
1k views
Load Properties from resources folder within JAR
I have a JAR file Movie Library.jar, its contents are depicted below:
The class PropertiesUtils is resides in the client.jar (shown in picture) and the properties files are in properties folder ...
1
vote
3answers
200 views
Java How to read a file line by line. Each line is mixed with both ascII and binary
I have a file have multiple lines.
For each line the format is
"String A" "String B" "binary data"
What I want to do is adding "String C" in front of each line
"String C" "String A" "String B" ...
0
votes
2answers
318 views
Incomplete data from a stream
I am reading data from a process stream. Basically, I am running the process using Runtime.exec API and getting the process input stream.
Runtime rt = Runtime.getRuntime();
process = ...
14
votes
4answers
639 views
How do you decide what byte[] size to use for InputStream.read()?
When reading from InputStreams, how do you decide what size to use for the byte[]?
int nRead;
byte[] data = new byte[16384]; // <-- this number is the one I'm wondering about
while ((nRead = ...
1
vote
4answers
764 views
how to copy/split an inputstream in java?
Is there a way to copy/split an input stream into two input streams similar to apache commons TeeOutputStream? I am trying to filter some input from the stream while displaying the entire input ...
5
votes
5answers
357 views
Java: A FileInputStream that blocks in read() while other thread downloads remainder of file?
I have an FFmpeg-based video-playing app which is able to play content from any arbitrary InputStream.
It is important that the app is able to play a video file which is in the process of being ...
0
votes
1answer
657 views
Java - output text from file as keyboard emulation
If I had a file numbers.txt with the following string:
*1222223* @4555556 !7888889! $19.99
How would I go about reading that line, removing the symbols, and outputting it via keyboard emulation as ...
0
votes
2answers
4k views
Getting an InputStream to read more than once, regardless of markSupported()
I need to be able to re-use a java.io.InputStream multiple times, and I figured the following code would work, but it only works the first time.
Code
public class Clazz
{
private ...
0
votes
1answer
159 views
io exception in openInputStream in Nokia 5800
I am using the following code to parse XML from server.
try {
//Open http connection
HttpConnection httpConnection = (HttpConnection) Connector.open(URL);
resultItem.setLabel("34");
...
-1
votes
2answers
3k views
InputStream from relative path
I have a relative file path (for example "/res/example.xls") and I would like to get an InputStream Object of that file from that path.
I checked the JavaDoc and did not find a constructor or method ...
0
votes
5answers
160 views
Get Internet file and make it to File object using Java? [duplicate]
Possible Duplicate:
Reading binary file from URLConnection
Now I have a URL:
(http://elsa.berkeley.edu/~saez/TabFig2005prel.xls for example, with http: scheme).
I need to access to this ...
3
votes
4answers
2k views
Unknown buffer size to be read from a DataInputStream in java
I have the following statement:
DataInputStream is = new DataInputStream(process.getInputStream());
I would like to print the contents of this input stream but I dont know the size of this stream. ...
-5
votes
3answers
825 views
C++, cin read large string with line breaks [closed]
I am trying to write a C/C++ program that reads in user input with the input stream.
I want to read in a large stream while ignoring whitespaces and linebreaks. Can you help me out?
I want to ...
0
votes
1answer
242 views
Android Resources alternative for File.length()?
The following code (not really written by me) is used to write data of a wav file through an inputStream to android's AudioTrack (unimportant for my question...)
int bytesread = 0, ret = 0;
int size ...
0
votes
1answer
215 views
How to deal with corrupted files that were created but IOException occured?
Could you please suggest how to deal with these situations ? I understand that in the second example, it is very rare that it would happen on unix, is it ? If access rights are alright. Also the file ...
1
vote
1answer
885 views
How to: Converting array of bytes to InputStream
With Apache Commons it is very simple to convert InputStream to byte[],
static byte[] toByteArray(InputStream input)
but I can't find the opposite method. What's the most popular/straightforward ...
1
vote
1answer
121 views
How do you read successive lines of linefeed-delimited text using a BlobstoreInputStream?
I would like to read a line of text at a time from the Blobstore using a BlobstoreInputStream and process the text
123,ABC,DEF,GHI,JKL,123,456,789,123\r\n
But the BlobstoreInputStream read methods ...


