dataoutputstream

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 situations where I can run over this. Are there any good alternatives that support larger strings or do I need to roll my own? ...

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 (socket.isConnected()) { try { dataOutputStream.write(ar.getBytes(Charset.forName("UTF-8"))); dataOutputStream.flush(); } catch (IOException ...

Android: Streaming audio over TCP Sockets

Hi, 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 great with a file - write audio to the file using DataOutputStream, and read from it using DataInputStream. However, if I obtain the ...

how to use ByteArrayOutputStream and DataOutputStream simultaneously (Java)

Hi! 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 using a DataOutputStream to solve the data writing with writeInt(int i) and write(byte[] b), and to be able to put that into a byte array, ...

java DataOutputStream exception SOLVED

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 static void main(String[] args) throws Exception { String hostname, msg; InetAddress hostaddress; BufferedReader inFr...

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 networking website like Facebook, Twitter and LinkedIn. Is it possible to Orkut integration with Website for third party user in PHP. If yes...