Tagged Questions
The dataoutputstream tag has no wiki summary.
4
votes
2answers
321 views
Java sockets: DataOutputStream or OutputStream?
I'm still relatively new to sockets, and I haven't seen any information regarding this subject.
To write to a connected socket, you can either use
socket.getOutputStream().write
Or create a new ...
3
votes
2answers
372 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; ...
3
votes
4answers
1k views
Writing large strings with DataOutputStream
I've been doing some socket programming to transmit information across the wire. I've run into a problem with DataOutputStream.writeUTF(). It seems to allow strings of up to 64k but I have a few ...
2
votes
1answer
359 views
Linux: command-line tool to reverse byte order (change endianess)
I'm hacking around in some scripts trying to parse some data written by Javas DataOutputStream#writeLong(...). Since java always seems to write big endian, I have a problem feeding the bytes to od. ...
2
votes
1answer
430 views
Sending data from Java to C using socket programming
i am making a program that sends a string from a Java client to a C server using WinSock2. I am using DataOutputStream to send the data through the socket.
The C server, acknowledges the bytes ...
2
votes
5answers
1k views
how to use ByteArrayOutputStream and DataOutputStream simultaneously (Java)
I'm having quite a problem here, and I think it is because I don't understand very much how I should use the API provided by Java.
I need to write an int and a byte[] into a byte[]
I thought of ...
2
votes
3answers
4k views
Android: Streaming audio over TCP Sockets
For my app, I need to record audio from MIC on an Android phone, and send it over TCP to the other android phone, where it needs to be played.
I am using AudioRecord and AudioTrack class. This works ...
1
vote
3answers
98 views
Writing unicode to rtf file
I´m trying write strings in diffrent languages to a rtf file. I hav tried a few different things.
I use japanese here as an example but it´s the same for other languages i have tried.
public void ...
1
vote
2answers
178 views
Why does DataOutputStream.writeUTF() add additional 2 bytes at the beginning?
When I was trying to parse xml using sax over sockets I came across a strange occurence.
Upon analysing I noticed that DataOutputStream adds 2 bytes in front of my data.
Message send by ...
1
vote
1answer
128 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
2answers
78 views
Weird outputs while using DataOutputStream
I'm using DataOutputStream of Java IO in order to write to a file but when I execute the program, I don't get the correct output, instead, I get weird characters. -Although I have noticed that only ...
1
vote
2answers
95 views
Pros and cons for using ObjectInputStream/ObjectOutputStream to implement network “packets” in Java?
I'm working on a simple client/server application that uses sockets for all the communications. Communications are packet-based and the concept of packets is implemented using a set of classes and ...
1
vote
1answer
124 views
Inconsistent results from write, then read with byte array and DataOutputStream
Short Version:
I write an 8 byte, byte array filled with random bytes to disk using a DataOutputStream, and then read it back in with a DataInputStream in another method. The data does not appear to ...
1
vote
2answers
144 views
Sending an int in java. Sometime causing an Exception?
ok im sending an int from one java program to another (on same computer at the minute).
However, sometimes I'm getting an exception and it wont connect:
Exception in thread "main" ...
0
votes
2answers
45 views
Writing to text files in Java
I have a method that writes a string to a text file using a DataOutputStream and the .writeBytes(String) method. If I write a string with a newline character, for example "I need \n help!", the new ...
0
votes
2answers
75 views
How can I write 7 byte Integer value to DataOutputStream, which contains 15 digits?
I have to write 7 byte Integer value to DataOutputStream, this Integer contains 15 digits. How can I do that?
0
votes
2answers
84 views
Use junit to test reading from text and binary files and writing to text and binary files
I wrote a Course class that has constructors that read from text and binary files and has methods to write to text and binary files. How do I write a junit test to test this class?
see code below:
...
0
votes
1answer
68 views
recieve output from java DataOutputStream in a php page
I have a java applet which I am using to send a file back to my server with - on the server end I want to recieve this on a php page.
Below is the java code which is doing the sending, on the php ...
0
votes
1answer
663 views
Client-server application file transfer
I am currently trying to design a client-server application, something like this: the user connects to the server and when the authentication is OK the server send to the user some files. The problem ...
0
votes
3answers
120 views
Java Input and Output
Explain the difference between the outputs of the following two fragments of code for outputting an int i to a file:
i)
PrintWriter outfile = new PrintWriter(new FileWriter("ints.txt"));
...
0
votes
1answer
524 views
Help with writting DataOutputStream in Android
So i am trying to set up a socket client to send just an int for the time being with DataOutputStream to a server. My app works fine when i run it from my PC but i get this error message on Android ...
0
votes
1answer
393 views
Sending command to a device over Bluetooth by writing to DataOutputStream
I'm trying to send a command to a device over my Bluetooth RFCOMM socket Connection.
-Connection is successful.
-As soon as it gets connected i tried reading the DataInputStream and i continuously get ...
0
votes
1answer
398 views
Android DataOutputStream Flush method does not seem to actually flush
Here's some quick code I am doing. (I removed some of it to make it more readable.) Essentially, I'm opening a file, and processing 3k chunks at a time. These get encoded to Base64 (4k chunk now) ...
0
votes
1answer
143 views
Binary I/O Classes (Summing all the integers in a binary data file)
Could someone please help me through this problem? I'm not really good with the binary I/O classes.
Suppose a binary data file named Exercise 13b_1.dat has been created using writeInt(int) in ...
0
votes
1answer
86 views
java object streams
I'm trying to create a server in java which will maintain up to 4 connections simultaneously. I thought that holding the relevant information in an array would serve my purpose, well, but I'm having ...
0
votes
2answers
524 views
Save and read file with stream on BlackBerry
Argument 'address' is the string "CepVizyonVersionFile", and after Connector.openDataInputStream(address) the program throws an exception with message:
no ' : ' in URL.
What format should ...
0
votes
2answers
268 views
It possible to integrate Orkut like using Oauth like Facebook and Twitter
I am Haresh, I am new user of stack Overflow. I am posting my first question here
As per information i have, Aouth provides very stander plateform for authentication for accessing thirdpary social ...
0
votes
3answers
594 views
java DataOutputStream exception
The exception is thrown in line 24 the second time I type something (after I have typed the host name) - server works right. Code
import java.io.*;
import java.net.*;
class TCPclient {
public ...
0
votes
3answers
1k views
DataOutputStream not flushing
I have a Java Client which sends UTF-8 strings to a C# TCP-Server, I'm using a DataOutputStream to send the strings. The code looks like this:
public void sendUTF8String(String ar) {
if ...