Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
streams
- Page 1
Streams in JavaScript
Programming
Web Development
19 Years Ago
by web developer
[CENTER][B]Hi all, I am want to know if i can create files and work in
streams
by javascript . if that is available please send to me the idea and the code if available. Thanx.[/B][/CENTER]
Streams,Buffer in Java
Programming
Software Development
14 Years Ago
by miney
… create two File objects. * The method then attempts to open
streams
on both files, one to * read from the source file…
Re: Generic streams
Programming
Software Development
11 Years Ago
by mike_2000_17
…-directionality, which excludes the standard
streams
(and any other similar
streams
, like internet socket
streams
). Here is how you would …out](http://en.wikipedia.org/wiki/Pipeline_(Unix)) those
streams
. And then, there are a myriad of other …use-cases for this kind of "generic"
streams
, which the whole reason why iostreams are the only…
Re: Generic streams
Programming
Software Development
11 Years Ago
by mike_2000_17
… other (except for synchronization), they are two distinct
streams
. Whatever you write onto cout, you will never …interaction can happen transparently while the input and output
streams
are piped through (secure-)sockets and routed through …had to implement a bi-directional capability on standard
streams
, this would be nearly impossible to do. Also…
Two Input Streams Open at Once?
Programming
Software Development
13 Years Ago
by coolbeanbob
Is it possible to have multiple input
streams
open at the same time? I know it takes a … as efficient as possible. I really need to have two
streams
open at the same time. The data is too large… I open stream A, then open stream B, are both
streams
open? Or does stream A close when I open stream…
Re: Understanding what strandard streams (stdin, stdout) are
Programming
Computer Science
15 Years Ago
by tux4life
…the C language). This library uses what are called
streams
to operate with physical devices such as keyboards, printers,… type of files supported by the system. [B]
Streams
are an abstraction[/B] to interact with these in… an uniform way; All
streams
have similar properties independently of the individual characteristics of …
Re: Understanding what strandard streams (stdin, stdout) are
Programming
Computer Science
15 Years Ago
by Rashakil Fol
… inherits the shell's open standard input and standard output
streams
. When you run a command like [icode]./foo >…file descriptors point to the standard input and standard output
streams
(I forget which is which, though). The file descriptors…, alter what your standard input and standard output
streams
point to, in the middle of your program.
File Streams in C++
Programming
Software Development
14 Years Ago
by Milton Neal
… of it requires that I maintain an array of file
streams
so that I can open serveral files at one time…. Ah! yes istream for reading ostream for writing, bugger two
streams
! What to do? Back in the old C days I…
Re: Generic streams
Programming
Software Development
11 Years Ago
by Labdabeta
… I have a situation in which I will have 2
streams
of any kind open which will be able to read… for an educational machine language. It allows opening of two
streams
which can point to either STDIO, the file space or…. I believe that finding a way to shoehorn all three
streams
into two stream variables would make my code much simpler…
Add commenting to Windows files and folders through Alternate Data Streams
Programming
Software Development
7 Years Ago
by Reverend Jim
… is done using a feature of NTFS called Alternate Data
Streams
. You may not be familiar with ADS but you have… by Mark Russinovich available through Microsoft. The particular utility is **
Streams
.exe**. If I can get DeleteA to work I will…
Re: File Streams in C++
Programming
Software Development
14 Years Ago
by Narue
… common. The only caveat is the same as with C
streams
: when switching between read and write mode, there needs to…
Re: Add commenting to Windows files and folders through Alternate Data Streams
Programming
Software Development
7 Years Ago
by Reverend Jim
Got DeleteFile (kernel32) to work.
Streams
.exe is no longer required. Updated project is attached.
Input Output File Streams - Sorting Help With Array
Programming
Software Development
19 Years Ago
by myprecious
Hi. Im doing a c++ course. And we are doing a assignment to do with I/O File
streams
. We are using struct. I can add, update, print, and search for records. Now, I need help to read data into an array and sort the array on any one field and the read the data to a new file. Data consist of: ID Name Age Height Any advice/help???
Need Help with file streams
Programming
Software Development
17 Years Ago
by Llama
ok, so I have read some tutorials on file
streams
, but i am still confused. I have made a program …
i/o streams
Programming
Software Development
17 Years Ago
by infernojmd
so i been using i/o
streams
and i understand how to open, check to see if …
Understanding what strandard streams (stdin, stdout) are
Programming
Computer Science
15 Years Ago
by mahela007
What are these standard
streams
and how do they work? Are they just like normal files where one program writes to the file and another reads from it? If so, how can two programs access the same file at once?
Re: Understanding what strandard streams (stdin, stdout) are
Programming
Computer Science
15 Years Ago
by Salem
… same file at once? I thought we were talking about
streams
, not files. A stream is a conduit between a producer…
Is this bad code? (streams, try - catch - finally and exceptions)
Programming
Software Development
14 Years Ago
by Bladtman242
… considered good code:) I am thinking especially of the two
streams
on the socket, if the first one is successfully opened…
Re: Is this bad code? (streams, try - catch - finally and exceptions)
Programming
Software Development
14 Years Ago
by Bladtman242
… are supposed to = making sure the finally block closes the
streams
if they have been successfully opened :) EDIT: I can't…
Re: Is this bad code? (streams, try - catch - finally and exceptions)
Programming
Software Development
14 Years Ago
by Bladtman242
… second stream fails, the program will try and close both
streams
, hence making a call to an object that does not…
Netflix's Free App Streams to iPhone and iPod Touch
Hardware and Software
macOS
14 Years Ago
by PCBrown
… at the mercy of service providers. Spotty signals mean video
streams
with low bitrates and skipping. Hopefully WiMax and HSPA will…
Problems regarding classes, seperate file compliation and I/O streams
Programming
Software Development
13 Years Ago
by Firzin
… my first time using classes, seperate compliation and I/O
streams
. At the moment I'm getting "expected primary-expression…
Multiple Input/Output Streams in Java
Programming
Software Development
13 Years Ago
by F1r3st0rm
… hanging (it is possible to have multiple input and output
streams
to the same socket). [CODE=Java]Socket sock = new Socket…
Opening FTP Read Streams
Programming
Software Development
13 Years Ago
by thines01
Here are two examples of opening read
streams
to files on an FTP server. One example uses the …
Redirecting Streams/Creating Child Processes
Programming
Software Development
11 Years Ago
by sireiz
What is the best and efficient way of redirecting
streams
from a parent process to child process. There are a number of ways i found out like boost.process, fork() and createprocess(). But what is the best way for windows?
Re: Redirecting Streams/Creating Child Processes
Programming
Software Development
11 Years Ago
by vijayan121
`boost::interprocess::message_queue` is portable. For redirecting standard
streams
on Windows, see: [http://msdn.microsoft.com/en-us/library/ms682499(VS.85).aspx](http://msdn.microsoft.com/en-us/library/ms682499(VS.85).aspx)
Re: Redirecting Streams/Creating Child Processes
Programming
Software Development
11 Years Ago
by sireiz
Is there any Video Tutorial or Course around about redirecting
streams
?
Re: Redirecting Streams/Creating Child Processes
Programming
Software Development
11 Years Ago
by sireiz
And Please vote up my question about redirecting
streams
if you think it is worth it. :)
Generic streams
Programming
Software Development
11 Years Ago
by Labdabeta
Hello, Looking at the standard
streams
provided by the stl libraries, it seems as though it …
Re: Generic streams
Programming
Software Development
11 Years Ago
by Labdabeta
… OPEN and CLOSE commands, and thus a finite count of
streams
which can be open at once and a generic stream…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC