A mechanism for writing byte data to a stream

learn more… | top users | synonyms

0
votes
1answer
37 views

Why is InputStream.read() blocking here?

I am supposed to develop a simple SFTP. Things were going fine until my ByteArrayOutputStream (in this case, baos) was not writing all of the arrayByte. Can some please explain to me, why the system ...
1
vote
1answer
52 views

Perl create byte array and file stream

I need to be able to send a file stream and a byte array as a response to an HTTP POST for the testing of a product. I am using CGI perl for the back end, but I am not very familiar with Perl yet, ...
0
votes
1answer
44 views

Java: time to read sound from TargetDataLine and write to ByteArrayOutPutStream different sometimes

I have a thread where I am reading data from TargetDataLine (microphone) and writing it to a ByteArrayOutputStream. I have a little "timer" because I want to record sound for 10 ms and then pass the ...
0
votes
1answer
78 views

JSF page won't reload if I write to ByteArrayOutputStream

Basically, I have a JSF page that displays a count and a "download" button. What I want to have happen is when the button is clicked a text file is created and downloaded and the page's count gets ...
0
votes
0answers
55 views

marshalling converts special characters as question marks

In my code I want to write some fields to an xml file. When I call Marshaller.marshal(element, out); th correct fields for example a field with value= "barça" will be converted in the ...
0
votes
0answers
33 views

android bytetoArray padding

I have an array of int : int[] configurableMaxCurrentTenths = new int[7]; I am trying to write it to a byteArray, but for some reason I get extra bytes at begining? Here is the logcat which is ...
1
vote
1answer
42 views

capturing error message and to display in console (IDE)

I am running a c++ program (makefile) as a background process using Processbuilder from my java Program. I am capturing the values displayed in my cmd prompt using .getInputStream and displaying in my ...
0
votes
0answers
247 views

iText to generate a pdf via servlets from a dynamic mapped jsp page with input data

I have used byte array output stream to generate pdf however the input is a mapping of a jsp page and webbased data this mapped document is to be used to generate a pdf ByteArrayOutputStream baos = ...
0
votes
1answer
106 views

JAVA:ByteArrayInputStream to FileInputStream

I am not very experienced in Java and I am having trouble converting a ByteArrayInputStream object to a FileInputStream object. is there any hints, or any way to do that ? i wrote a code that takes ...
0
votes
1answer
50 views

Convert into bytearrayoutputstream

If I have a method that passes in an OutputStream how can I convert it to a ByteArrayOutputStream?
-1
votes
1answer
87 views

ByteArrayOutputStream throwing OutOfMemoryError

I'm trying to read a byte array of an image using the following code but it throws an out of memory exception. I have commented where the exception occurs. byte[] bBuffer = new byte[300000]; // ...
0
votes
1answer
113 views

Convert ByteArrayOutputStream to BufferedImage

I have a ByteArrayOutputStream I have created using the QRGen Qr code generation library, and I want to turn it into a BufferedImage object and present it in an ImageView in Android. How may that be ...
0
votes
1answer
151 views

Understanding Avro Deserialization from a Large ByteArrayOutputSteam

I'm under the impression that a ByteArrayOutputStream is not memory efficient, since all it's contents are stored in memory. Similarly, calling toByteArray on a large stream seems like it "scales ...
0
votes
2answers
119 views

Expecting 0 bytes after writeObject(null), instead I find 5 bytes, what's going on?

I'm getting some strange results when writing objects to a ByteArrayOutputStream. ByteArrayOutputStream baos = new ByteArrayOutputStream(); ObjectOutputStream os = new ...
0
votes
1answer
107 views

OutOfMemoryError Whilst Writing a String to a ByteArrayOutputStream

I have a method which I have an array of String objects which I need to write to a ByteArrayOutputStream which later on I will write into a ZipOutputStream. Here is my code. // SAVE THE STRING AS A ...
1
vote
1answer
552 views

Java ImageWriter BufferedImage to GIF

I hope you guys can help me with this one. I'm not sure if it is a bug in Java or if I'm doing something wrong, but I'll go with the latter. I want to turn a BufferedImage into a GIF image. I then ...
-1
votes
1answer
127 views

Problems reading a text file from assets with rare characters (á é à è…)

i have a txt file on assets folder with content with rare characters, for example with this content: Hola Holà holá es un vetélélà Holà holá es un vetélélà Holà holá es un vetélélà Holà ...
0
votes
2answers
124 views

Passing ByteArrayOutputStream into the Constructor of DataOutputStream [closed]

I understand that this can be done using wrapper pattern, but i am having a hard time understanding, how does the following code work. ByteArrayOutputStream bytearray = new ByteArrayOutputStream(); ...
2
votes
2answers
185 views

Equivalent for DataOutputStream of Java in Objective C

I am currently working on a Project which is in Objective C. I need to use Functions of Java class DataOutputStream like writeChars, writeLong, flush and some functions of ByteArrayOutputStream ...
0
votes
4answers
593 views

Android Sending objects through UDP sockets

i'm trying to send an object (ClientModel) through an UDP socket. The socket part works fine because if I try to send a simple string it works. I reach an exception, where's the error? The client says ...
1
vote
1answer
274 views

Strict Mode complains on resource leak

Strict mode complains the following: A resource was acquired at attached stack trace but never released. See java.io.Closeable for information on avoiding resource leaks.: **response = ...
2
votes
3answers
92 views

Fastest way to GZIP and UDP a large amount of Strings in Java

I'm implementing a logging system that needs to encode the log messages with GZIP and send them off by UDP. What I've got so far is: Initialization: DatagramSocket sock = new DatagramSocket(); ...
0
votes
0answers
91 views

Java ByteArrayOutputStream with nio?

May the following example be implemented by using the java.nio.* package? DummyClass dummyObject = new DummyClass(); DummyClass dummyObject2 = null; ByteArrayOutputStream bos = new ...
1
vote
1answer
138 views

ObjectOutput throws java.io.NotSerializableException

This is the class that's about to be serialized into a byte array. public class DummyClass implements Serializable { private static transient final long serialVersionUID = ...
-1
votes
2answers
679 views

java insert Blob as ByteArrayOutputStream get ClassCastException

I've to save a pdf file represented as a ByteArrayOutputStream into a Blob SQL field of a table, here's my code: public boolean savePDF(int version, ByteArrayOutputStream baos) throws Exception{ ...
0
votes
1answer
150 views

Socket Inputstream doesn't return -1 at the end of stream

This is a code snippet where the problem is happening: public static byte[] copyLargeExt(InputStream input) throws IOException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ...
1
vote
2answers
404 views

How to play a video from Amazon S3 in Android App?

I use aws-android-sdk-1.4.3/samples/S3_SimpleDB_SNS_SQS_Demo to preview my files stored on Amazon (Amazon Simple Storage Service). Looking through code I saw that they use this, to acces the files: ...
0
votes
2answers
698 views

Outofmemoryerror ByteArrayOutputStream sending large file to WS

im sending videos to webservice and works ok with videos less than 10MB, if the video is about 12MB give me outofmemoryerror: This is my code: FileInputStream fileInputStream = new ...
0
votes
5answers
978 views

Java writing to ByteArrayOutputStream memory leak

I am writing bytes of image to ByteArrayOutputStream then sending it over socket. The problem is, when I do ImageIO.write(image, "gif", byteArray); Memory goes up VERY much, kinda memory leak. I ...
0
votes
4answers
234 views

Java BufferedArrayOutputStream leaks in memory

I made a new question because this is different from my last thread. I now know what th e problem is more exact. I create a new bytearrayoutputstream ByteArrayOutputStream byteArray = new ...
0
votes
3answers
79 views

Adding up ByteArrayOutputStreams

Im having a bunch of ByteArrayOutputstreams onto which pdf reports are written over different parts of a particular workflow. I use IText to accomplish this. Now, at the end I would like to group all ...
0
votes
2answers
828 views

How can I remove bytes from a ByteArrayOutputStream?

So the first four bytes of my ByteArrayOutputStream contain the length of a header in my stream. I need to remove that header from the stream and go on with my business. ByteArrayOutputStream ...
0
votes
0answers
595 views

convert byte array to a document

I need to create an asp page which converts files stored as binary (byte array) in sql database to a viewable format in an app. I was told you would just pass in the name of the file and it would have ...
0
votes
0answers
84 views

How to use bufferred image with java print service

I have a BufferredImage object which I want to use with a print service to print the image. When I try to get image from buffered image, store it on my machine and then reopen the image and sent it to ...
2
votes
1answer
357 views

Upload a wav file using J2ME

I am trying to upload a wav file to server using j2me httpconnection. However I am not able to do it. It throws null pointer exception when it's writing the bytes to the server. Sample is below. ...
3
votes
1answer
2k views

Android - How to convert picture from webview.capturePicture() to byte[] and back to bitmap

I'm trying to capture the picture I'm getting from webview.capturePicture() to save it to an sqliteDatabase, to do I need to convert the image to a byte[] to be able to save it as a BLOB in my table, ...
0
votes
2answers
331 views

what is the best way to close a ByteArrayOutputStream?

I need to optimize a aplicattion that uses too much heap memory. I'm having problem in close a ByteArrayOutputStream variable after using the same. I've tried to do using close() but it does not work. ...
0
votes
3answers
290 views

Would java.io.ByteArrayOutputStream.toByteArray() return null?

Just like the title shows, I couldn't find any clue about it in Javadoc.
2
votes
3answers
2k views

Exceeding byte[] array length (over int upper limit) - java.lang.ArrayIndexOutOfBoundsException

I have a ByteArrayOutputStream object that I'm getting the following error for: java.lang.ArrayIndexOutOfBoundsException at java.io.ByteArrayOutputStream.write(ByteArrayOutputStream.java:113) I am ...
0
votes
1answer
262 views

PDF to bytearrayoutpustream whitespace

I've a java code to create a PDF temporary file and save it into a BLOB field DB. PDF is generated correctly, and BLOB is saved into DB. When I recreate PDF this is returned without whitespace char! ...
1
vote
1answer
432 views

Audio input capture in Java - byte array

I'm trying to get double/intger amplitude values for audio input: AudioFormat format = new AudioFormat(8000.0f, 8, 1, true, true); TargetDataLine line = null; DataLine.Info info = new ...
0
votes
1answer
356 views

Android bluetooth game, need to transfer int[] across byte stream

Here's the situation: I am making a multiplayer version of pong for android. When my paddle connects with the ball, I want to send the other player the point of impact of the ball (as an x,y ...
0
votes
1answer
585 views

From PostgreSQL bytea, we're trying to read - and write back - an image file using Imagick

From PostgreSQL, am trying to read an image file into an Imagick object - and simply re-write the same file back into another bytea field. Objective is to fully understand the string handling and ...
4
votes
6answers
6k views

Java: Memory efficient ByteArrayOutputStream

I've got a 40MB file in the disk and I need to "map" it into memory using a byte array. At first, I thought writing the file to a ByteArrayOutputStream would be the best way, but I find it takes ...
0
votes
1answer
2k views

java wrap GZIPOutputStream & ByteArrayOutputStream together - what am I doing wrong?

Main.java import java.io.IOException; public class Main { private final CompressedOutputStream m_cos; public static void main(String[] args) { try { ...
5
votes
2answers
2k views

BufferedOutputStream vs ByteArrayOutputStream

Is there any advantage in wrapping a BufferedOutputStream around a ByteArrayOutputStream instead of just using the ByteArrrayOutputStream by itself?
1
vote
4answers
807 views

Java: IOException when writing to a ByteArrayOutputStream?

Since ByteArrayOutputStream simply writes to memory, an IOException should never occur. However, because of the contract of the OutputStream interface, all stream operations define IOException in ...
2
votes
1answer
711 views

java byte array output stream gives nothing

I have the following code and I can't figure out why it won't work: final ByteArrayOutputStream bos = new ByteArrayOutputStream(); final String p1 = "HELLO WORLD"; process(p1, bos); ...
3
votes
2answers
918 views

Send packet over UDP socket

I am trying to send the following data to a server, that will be using C++: static int user_id; // 4 Bytes static byte state; // 1 Byte static String cipher_data; // 128 Bytes static String hash; ...
1
vote
4answers
2k views

Concatenate ByteArrayOutputStream

public byte[] toByteArray() { try { ByteArrayOutputStream objectStream = dataObject.toByteArrayOutputStream(); DataOutputStream dout = new DataOutputStream(objectStream); ...

1 2