1. How to write into input stream in java stackoverflow.comSuppose i execute a command in java using the exec() function and i store the reference in a Process . How do i write into the input stream of that process
|
2. Play video in java from InputStream stackoverflow.comDoes anyone know what I should use to play a video in Java, from an InputStream? I get the video from a SOAP message, and I don't want to save it to ... |
3. Reading EUC encoded HTML using Java on Windows stackoverflow.comI am trying to read an HTML file which is encoded in EUC-KR from a URL. When I compile the code inside the IDE I get the desired output, but when ... |
4. Piping data through an external application on Windows using Java stackoverflow.comI have a Java-app with an InputStream, which is copying data to an OutputStream. I want to compress the data from the InputStream using FreeArc, before writing it to the OutputStream. ... |
5. instance of external program inside a buffer stackoverflow.comi have a project that involve the streaming of the image of a running program. the program can be anything, a video player, a stock control, with any type of visual stuff ... |
6. FileChannel.transferTo for large file in windows stackoverflow.comUsing Java NIO use can copy file faster. I found two kind of method mainly over internet to do this job.
|
7. Java 7 nio WatchService slow to respond in windows 7 stackoverflow.comI have created a tailing program to watch a log file that is frequently updated. I wanted to use the new NIO stuff in Java seven to wait for the ... |
8. Double linebreak with BufferedReader on Win XP, but not other OSs...same code stackoverflow.comI have some code that does a Runtime exec and parses the results. On linux and Windows7, the code works fine for parsing the system commands, but on Win XP ... |
9. Trouble writing to process stream on Windows coderanch.comI have an external app I need to drive by sticking data in its stdin - I create the process and grab the streams accordingly (see below). On unix, this works fine, but on Windows I'm getting java.lang.IOException: The pipe is being closed as soon as I try to write a second batch of data to it (I don't close the ... |
10. File.lastModified() on windows vs linux coderanch.comFile.lastModified() javadoc says - A long value representing the time the file was last modified, measured in milliseconds since the epoch (00:00:00 GMT, January 1, 1970), or 0L if the file does not exist or if an I/O error occurs But this method is rounding off the value on the Linux, to its nearest second unlike windows. (for example if a ... |
11. Creating a PrintWriter object in Windows. coderanch.com[Susan]: The first approach below is okay but not the second one. What exactly is wrong with the second? Does it throw an exception? If so, what's the error message? Or does somethign else go wrong? [Susan]: No, but that's what I'm actually wondering. If I don "12345.xml" it will create the file if it doesn't exist. Why not in this ... |
12. File.createTempFile() throws exception on Win7 coderanch.comWhen i call File.createTempFile() on a Win7 system it throws the following exception. This happens when i run my application as a windows service. If i run the application just as a simple java application then it works fine. java.io.IOException: The system cannot find the path specified at java.io.WinNTFileSystem.createFileExclusively(Nati ve Method) at java.io.File.checkAndCreate(Unknown Source) at java.io.File.createTempFile(Unknown Source) at java.io.File.createTempFile(Unknown Source) at ... |
13. File.createTempFile() throws exception on Win7 java-forums.orgWhen i call File.createTempFile() on a Win7 system it throws the following exception. This happens when i run my application as a windows service. If i run the application just as a simple java application then it works fine. java.io.IOException: The system cannot find the path specified at java.io.WinNTFileSystem.createFileExclusively(Nati ve Method) at java.io.File.checkAndCreate(Unknown Source) at java.io.File.createTempFile(Unknown Source) at java.io.File.createTempFile(Unknown Source) at ... |
14. Opeing multiple pdf files in different acrobat reader windows java-forums.orgBy clicking a submit button i'm calling a javascript in a jsp which uses "window.open" function and opens a jsp. In this jsp i call a function for opening a pdf file using "document.location.href". in this i have specified the URL to open this pdf. Now i want that if after this pdf is opened, i again chose some option and ... |
15. rtp video streaming issue from linux to windows forums.oracle.comi am currently running a windows machine and linux machine on the same network connected by a linksy wrt45g router. i am trying to use avtransmit2.java and avreceive2.java to stream a video from one computer to the other and i can't get it to go from either win to linux or linux to win. i am able to send information from ... |
16. File lastModified - different results from unix / windows forums.oracle.comHi all, I've a simple file poller that listens for files created in a specific folder. I noticed different results when the producer creates files within the same second and I run the poller under windows or under unix (I tried under solaris & under AIX). To test this scenario I wrote a simple FileProducer that creates files and lists the ... |
17. Pb using BufferedReader Linux OK, Windows nOK forums.oracle.comThank you for your reply. In fact the code inside the read loop create an object DicEntry that has three members each members receiving a part of the read line. It seems not to create problem as the program always return from its constructors with a valid value. But what is interesting is the following: If instead of creating DicEntries and ... |
18. java.nio, FileChannel Reading - Differences in Windows and Linux forums.oracle.comFor 1 & 2... this is just a sample, i'm not "worried" about those sizes yet. I am looking at this in debug. #3 doesn't solve the problem. NIO provides us with the speed and a few other things that we are looking for. We actually went through and explicity re-saved the file in Linux as UTF-8 and it worked on ... |