An abstract mechanism for writing data to a stream in Java and C#
1
vote
0answers
62 views
Couldn't send the image to the web server database for android
I was instructed to send a report in this format
Name=tan ah kow
Email=myemail@google.com
Contact=81234567
Block=123
Street=Tampines Central
Description=Dirty water puddle
...
0
votes
2answers
26 views
Send text to serversocket after connecting to it
I have a problem that I can't send text to ChatServer. My code:
...
try {
socket.connect(address);
System.out.println("Successfully connected to server!");
Thread ...
6
votes
0answers
56 views
Writing to ZipArchive using the HttpContext OutputStream
I've been trying to get the "new" ZipArchive included in .NET 4.5 (System.IO.Compression.ZipArchive) to work in a ASP.NET site. But it seems like it doesn't like writing to the stream of ...
3
votes
0answers
25 views
MIDI beat clock in Java
I'm creating a drum machine and I'm having some problems with outputting MIDI beat clock.
For simplicity, I've set the internal clock to run by calling Thread.sleep(_time), where _time is the amount ...
0
votes
1answer
35 views
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
47 views
Reading bytes from large files in Java cause Java heap space error
Awhile ago I was seeking help on the code below and finally started working on it again. Basically, I've narrowed my error down to the size of the file causing this error:
Exception in thread "main" ...
-1
votes
0answers
6 views
Arraya byte flip the picture with Xuggle [closed]
I wanted to do was get the camera with the image bytes Arraya h264 or InputStream to throw away. I do not want to throw the remote. How do I do that?
Can you help us?
0
votes
0answers
16 views
java process, executing commands does not work on windows machine
I am executing a sbt via java process. When it is executed I want to interact with this childprocess(java). For example I want to execute "show full-classpath". That all works on MAC and is tested! ...
1
vote
0answers
33 views
Java Connecting URL and downloading a zip but when extracting the zip it's not properly downloaded
I am sending a request XML to the URL and receiving a zip file to the given path.
Sometimes I'm facing troubles when the bandwidth is low this zip file, most likely 120MB size is not getting ...
0
votes
1answer
33 views
byte array to pdf corrupt pdf
This is my code, the fileByte in an array with the contents of a PDF in it.
However, the file is corrupt and I cannot read from it. What is wrong here? Thanks!
HttpServletResponse response = ...
0
votes
1answer
26 views
Windows JVM is limiting upload speed of http output stream
I have desktop java application for uploading files to some server and I do it with simple output stream
socket.getOutputStream();
outputStream.write(buffer, 0, bytesRead);
on osx or linux its ...
3
votes
3answers
59 views
Writing a string to the ouputstream of a socket
I am working on a project that adapts server-client architecture. Messages that are transferred between clients and the server are combinations of strings and byte arrays. I need to send the size of ...
0
votes
2answers
31 views
Using InputStream/OutputStream to handle data flows through modules
so now I have a bunch of modules. It's like a assembly line. There is data flowing through and each module does something about the data, or you can say the next module consumes the output that the ...
0
votes
1answer
48 views
HttpUrlConnection getOutputStream have plroblem
i make a android application and used for HttpUrlConnection, POST method, HoloEverywhere Library
but i have problem...
why happen to problem that i don't know...
im think that getOutputStream() error ...
0
votes
1answer
48 views
InputStream and OutputStream abstract methods
I've been exploring the java.io package a lot lately, and I've been wondering where can I find the exact processes that the abstract classes inside InputStream and OutputStream do.
I'm dazzled ...
0
votes
1answer
23 views
Streaming objects on a socket
Well this question is not specifically about sockets, but more a C++ question. However, I have a class which can send and receive data via a socket. I would like to send data with the stream syntax, ...
0
votes
1answer
54 views
Error reading .msg file downloaded from servlet
I have written a servlet which reads the outlook .msg file using msgparser and writes the content in ServletOutputStream so that it could be downloaded once the url is hit.
Problem which i am facing ...
0
votes
1answer
34 views
Saving to an object file in Java: getParentFile()
public void save() throws IOException {
File f = new File(path);
if (!f.getParentFile().exists()) {
f.getParentFile().mkdirs();
}
...
-1
votes
0answers
22 views
Reading getevent command output line by line without read() blocking [closed]
How would I read the output of the getevent command line by line within my application.
Every method I try blocks and I do not receive output unless some hidden buffer fills that seems to be 4096k. I ...
1
vote
1answer
77 views
Deserialize multiple Java Objects
hello dear colleagues,
I have a Garden class in which I serialize and deserialize multiple Plant class objects. The serializing is working but the deserializing is not working if a want to assign it ...
0
votes
1answer
71 views
Java - Strange behaviour on PrintStream with custom OutputStream
I am trying to write a program that redirects System.out to a JTextArea (it doesn't have to be a JTextArea), but when I call System.out.println("Test!") the output to the text area is like so:
\n
...
0
votes
4answers
155 views
Java - How Can I Write My ArrayList to a file, and Read (load) that file to the original ArrayList?
I am writing a program in Java which displays a range of afterschool clubs (E.G. Football, Hockey - entered by user). The clubs are added into the following ArrayList:
private ArrayList<Club> ...
0
votes
0answers
38 views
Java file corruption uploading via URLConnection
Im not sure why this is happening from time to time but file sizes differ when I upload to a remote ftp server.
Here is how I do this:
URLConnection uc;
try {
...
3
votes
1answer
72 views
Play/Akka integration with Java OutputStreams
I'm writing a Play! application which exposes a REST API allowing users to generate PDF reports. I'm constrained by the requirements to use a old Java API to do the actual report generation. That ...
0
votes
2answers
211 views
Multi threading multi client chat server
The title was bad i know but let me explain my situation. Okay, i am making a server that sits off to the side and communicates with my minecraft client. I can get one client to connect and transfer ...
0
votes
2answers
50 views
reading an object from a .txt in java
I'm trying to write and object to a file then read the object from the file and perform some operation on it. The object gets written to the file fine but when I try to retrieve it from the file I get ...
0
votes
2answers
65 views
display the output-stream of a Process returned by Runtime.exec()
How do I print to stdout the output string obtained executing a command?
So Runtime.getRuntime().exec() would return a Process, and by calling getOutputStream(), I can obtain the object as follows, ...
1
vote
0answers
89 views
.NET generate Zip File using DotNetZip and sent to HTTP Response Stream
I've got a problem with my following code. I have to use windows 2003 because of the firm. They use this system. This code doesn't work while it works with windows XP.
This code generate a zip file ...
0
votes
2answers
119 views
How to use HttpsURLConnection through proxy by setProperty?
Network environment:
Https Client<=============>Proxy Server<==============>Https Server
...
1
vote
1answer
72 views
Java CipherInputStream puts strange character at beginning of line
I'm testing the encryption of text in Java. The problem is that I get some strange characters at the beginning of the line and I don't understand why. When I remove encryption everything goes ...
0
votes
0answers
53 views
Printing Bitmaps from android saved images
So I have a basic canvas painting app. I have a background image which acts as a template to which you paint within. I want to be able to save the image and then eventually print it.. either by ...
0
votes
1answer
31 views
Add HttpCookie after OutputStream EndWrite [closed]
i want to add HttpCookie after this code :
zipFile.Save(context.Response.OutputStream);
how can i do this? any idea?
0
votes
1answer
51 views
Jave process getInputStream from subprocess
I used processbuilder fork a sub process and i want to get output of subprocess.So i use the getInputStream of process to get the output of subprocess.I find parent process can read the output from ...
2
votes
3answers
158 views
Is it overkill to use bufferedwriter and bufferedoutputstream together?
I want to write to a socket. From reading about network io, it seems to me that the optimal way to write to it is to do something like this:
OutputStream outs=null;
BufferedWriter out=null;
out = new ...
0
votes
0answers
75 views
Android closing outupt stream from somewhere causing EBADF
I have a project where i am using microemulator on android and i have hit a wall with an issue and could use some help.
I have a logger solution (mircologger) that is streaming data to a file via an ...
8
votes
2answers
118 views
broken pipe error while Capturing image in android
i m going to capturing image which is captured from application in android.but there is a some problem with Output Stream there is a error BROKEN PIPE with JAVA.IO. here is my code.Here the problem ...
0
votes
0answers
174 views
Send file from PC to Android via Bluetooth
I want to send a file containing file names from my PC to Android phone using Bluetooth connection.
At the moment the file names are stored in an ArrayList and I am writing each item of the ArrayList ...
0
votes
2answers
231 views
BufferedReader not reading all lines
I am in the process of creating an Android application that communicates with the PC using a Bluetooth connection. I am attempting to send items from an ArrayList from the PC to the Android.
2
votes
2answers
175 views
Java - Wait for stream to finish writing?
I have a "server" running in java and I am sending files via byte array to a "client" (android system). The functionality works fine, but I've noticed when I try to send larger files (1MB+), it doesnt ...
3
votes
1answer
111 views
StreamCorruptedException when sending Serialized objects via Bluetooth
I have a Serialized class that I need to send as an object via Bluetooth, and also implements Runnable. As such, I set a few variables first, then send it as an object to be executed by another ...
1
vote
1answer
41 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
23 views
how to send results from a .txt file to separate .txt file?
im trying to get the program to send the results gotten from a .txt file to a separate output file. but for some reason when i added the very last "try" statement to my code, the program wouldn't read ...
0
votes
1answer
65 views
How to add Attachments to Email in java using outputstream
I've seen the code for javax.mail library where you add attachments to the email doing this:
MimeBodyPart attachmentPart = new MimeBodyPart();
FileDataSource fds = new FileDataSource("C:/text.txt");
...
0
votes
3answers
474 views
java.lang.IllegalStateException: Already using output stream [closed]
windchill GUI on client side browser when a user clicks on a button particular pdf file should gets downloaded on his system.I have achieved this by using the following code.
<body>
...
1
vote
1answer
284 views
write multiple images to outputStream in a servlet
i am reading two images in a servlet and need to show both at the same time.
Currently only one image is shown (one that is written first). unable to write other image.
i do not get any error.
My ...
1
vote
1answer
37 views
Cannot execute jar file from aplication that uses XSteam
I'm testing to use persisting data using XStream and it works fine when I run it from JDeveloper, BUT when I deploy the app it just simply doesn´texecute.
The frame is simple, a button and a ...
1
vote
2answers
92 views
FileOutputStream opens a new file and deletes the contents whenever it is created
I'm dealing with serialization and deserialization in files. Moreover, i'm stack about using FileOutputStream with ObjectOutputStream. The issue is i have server/client chat application and whenever a ...
0
votes
1answer
128 views
Writing to existing file with help of assets manager in android
I am using the below code for reading my file and it is working fine, but now I want to add new text to that file. Please help me
private void loadingDictionary() {
// TODO Auto-generated method stub
...
0
votes
1answer
140 views
how to use an ArrayList of FileOutputStream?
I want to use ArrayList FileOutputStream to write multiple files at the same time in the internal storage of an android tablet.
for(int i = 0; i< fileName.size(); i++){
...
0
votes
2answers
145 views
Saving Object to File via ObjectOutputStream
I am having difficulties when saving/retrieving a list of Objects to a File via OOS.
@Override
protected void onStop() {
super.onStop();
FileOutputStream fos;
try {
fos = new ...
