A stream is a series of data elements (characters, bytes or complex packets) which can be accessed or made accessible in a serial fashion. Random access is not possible.

learn more… | top users | synonyms (1)

0
votes
0answers
6 views

Add a file source to a working LiveJob

Ihave to encode a dynamique list of files and Publish it using Expression Encoder, the problem is once I start encoding LiveJob job = new LiveJob(); ....... job.stratencoding(); I cant add a new ...
0
votes
1answer
21 views

How to start the download of remote big files directly?

I'm trying to pass a large file from an external API to the user, (think 100MB or more) Currently, I'm using a bit of a paranoid script (due to failures from the past) to get the script downloading ...
-1
votes
1answer
8 views

With dropbox API is it possible to generate a public link?

I'm just wondering if it would be possible to generate a public link to dropbox content with the API? I'm asking this because I'm looking to upload videos from dropbox to a remote server and I want ...
0
votes
3answers
61 views

comma separated stream into struct

I have a structure with an int and two strings. When reading in the file it is comma seperated for the first two values and the last value is terminated by a newline. The third argument could be empty ...
0
votes
2answers
28 views

Writing jpeg image into a SQL Server 2000 style TEXT field

I have a client who is asking me to import jpeg files into their SQL Server database. The problem is that their database vendor originally build the product in SQL Server 2000 (or earlier) although ...
0
votes
0answers
26 views

Secure streaming link

I have a problem to secure and protect my video link from direct downloads... I am try to make something like this link http://server1.site.com/videos/123/456/789.mp4?key=0457043013fbd9ebae8ae3 ...
0
votes
0answers
7 views

Transform stream and use of 'unshift'

I'm having a problem with streams2 transform. I have a stream which reads from a file and transforms the csv data to json. the transform works fine but at present if I have an incomplete chunk of data ...
0
votes
0answers
16 views

Retrieving wav file from Oracle database

(Sry for my bad english) Im trying to combine C# with Oracle database and I already know how to store audios (wav) in database as a BLOB's. I also know hot to connect and retrieve those blobs from ...
0
votes
1answer
8 views

can some one give some samples or resource above stagefright?

I am studying android recently,I want to decode TS stream with stagefright and want to know how stagefright deal with video file or stream,but I know little about stagefright.can some one give some ...
0
votes
1answer
29 views

Rikulo Stream serve specified file

How do I serve a file that I specify in Rikulo stream without doing a redirect. I was trying new ResourceLoader('my_app').load(connect, 'alternate.html'); from the plugin package but I receive the ...
0
votes
1answer
36 views

how can I get image size (w x h) using Stream

I have this code i am using to read uploaded file, but i need to get size of image instead but not sure what code can i use HttpFileCollection collection = _context.Request.Files; for ...
0
votes
1answer
18 views

Get amount of serialized objects in stream to randomly choose one

I'm trying to get the amount of serialized objects in the stream I'm serializing and deserializing from. I want to do this to create a random value between 1 and that amount. Is this possible to do ...
1
vote
1answer
17 views

How to serve remote file as a download in rails?

I know it's old, but I have project running rails 2.3.9 Admins on our site can provide Document downloads to customers in two ways. Create a Document with a file attachment Create a Document with ...
1
vote
2answers
35 views

readline() doesn't read from socket

s = new Socket(InetAddress.getByName(address), port); Thread.sleep(250); DataOutputStream outToServer = new DataOutputStream(s.getOutputStream()); BufferedReader inFromServer = new ...
0
votes
1answer
30 views

C++: how do I create istream with desired content?

I was given a function with following signature. I can't change it, I have to work with it. void parse(std::istream & in); I'm supposed to test this function, so basically call it with ...
1
vote
1answer
30 views

Rikulo stream base folder

Is it possible to choose to serve files only from a specific folder using Rikulo stream? I've tried new StreamServer(uriMapping: _mapping, homeDir: 'my/web/webapp/app') but I'm not getting the ...
0
votes
0answers
14 views

Form boundaries and writing php://input to a file in php

So I want users to be able to upload big files without having to worry about the post max size values. The alternative is using PUT and send a file as raw data. When using jquery I can do this: var ...
3
votes
1answer
46 views

Combination of std::ios::openmode to truncate if the file exists but prevent new file creation?

I have asked earlier if there was a combination of openmode to avoid modifications of an existing file. Now I would like to know if the contrary is possible : if the file already exists, truncate it ...
0
votes
2answers
18 views

c# RequestStream changes equal to comma

I have a program where I am using POST to send an XML message to an endpoint. It is properly formed in the output both before and after being converted to a byte array, but once it is received by the ...
2
votes
2answers
43 views

Parsing JSON stream

I have an application that is using chrome.sockets. JSON is being passed to and from the socket which does not have a delimiter and is not prefixed with the length of the string. Now the way sockets ...
1
vote
1answer
32 views

C#: convert a stream of bitmap images to avi file

My application receives a sequence of images (BitmapImage) from an external device with rate 30 fps. I need to create an avi file from this images and then, save it on filesystem. How can I obtain ...
0
votes
1answer
37 views

How Buffered Streams works?

In Java and C# there are several classes for buffering streams: BufferedStream in C#, Buffered(Input|Output)Stream and Buffered(Reader|Writer). They gets some stream in constructor and implements ...
0
votes
1answer
39 views

Combination of std::ios::openmode to avoid modifications of an existing file?

Is there an available combination of std::ios::openmode to avoid modifications of an existing file and allow only the creation of a new one ?
0
votes
1answer
43 views

How to read byte[] with current encoding using streamreader

I would like to read byte[] using C# with the current encoding of the file. As written in MSDN the default encoding will be UTF-8 when the constructor has no encoding: var reader = new ...
1
vote
2answers
46 views

c++ std::ifstream: check if charaters are left to read

Is there a way to check if any characters are left in an ifstream to read and if yes, how can I do this. If you know for sure that this isn't possible, please tell me so. EDIT: I changed my question ...
0
votes
3answers
40 views

Catch errors on stdin, stdout, stderr

I was writing a bit C99 code reading from stdin: // [...] fgets(buf, sizeof(buf), stdin); // [...] But I am wondering if I should catch errors in this case, since the shell could redirect stdin to ...
1
vote
1answer
45 views

C++ Outputting strings from a .txt file in to a dynamic array outside of a member methods local scope

To start with, is what I'm asking possible? I currently have a program with one member method (Read) that reads in strings from a .txt file locally in one member method and just outputs the same data ...
0
votes
2answers
31 views

How to do parsing istringstream C++?

I need to print some data from stream - istringstream ( in main () ). example: void Add ( istream & is ) { string name; string surname; int data; while ( //something ) { ...
0
votes
4answers
70 views

howto securely mix std::ifstream's tellg, seekg and read(*,n) methods in text-mode

I'm trying to read in a file with std::ifstream line by line in a loop. In the same loop, I'm trying to find two tags which enclose a block which I'd like to read as a whole. I thought, I could track ...
0
votes
2answers
79 views

C++ Seeking advice on alphabetically sorting strings inputted via ifstream BEFORE storing in array

I've spent the morning working out how to read in words from a .txt file and store them in a dynamic array. However my objective is to sort the words alphabetically as they are inputted. I've done as ...
0
votes
0answers
24 views

Is it possible to use C# with Salsa 20/12 so that Intel/AMD SSE2 acceleration is used? [duplicate]

I'm interested in the eStream project and using C# to encrypt / decrypt data streams with Intel/AMD acceleration. How can I use C# to interact with Intel/AMD hardware so I can get the following ...
2
votes
1answer
57 views

Getting the size of a file that exceeds System.Int64 range (theoretically possible)

To find out the length of a file (in bytes) you would normally use FileInfo.Length or System.IO.Stream.Length (is there a difference?). Both are of type long, i.e. System.Int64, hence the maximal ...
1
vote
4answers
36 views

Is it necessary to close a FileWriter, provided it is written through a BufferedWriter?

Consider a BufferedReader as below: writer = new BufferedWriter(new FileWriter(new File("File.txt"), true)); In this case at the end of the application, I am closing the writer with writer.close() ...
1
vote
2answers
55 views

When should I use InputStreamReader and OutputStreamWriter?

From the Java Tutorial site, we know InputStreamReader and OutputStreamWriter can convert streams between bytes and characters. InputStreamReader converts bytes read from input to characters, while ...
1
vote
2answers
30 views

Java close multi-layer stream wrapper

In java, we usually use a stream object to wrap another stream class for efficiency. For example: Object obj = new MyClass(); try{ FileOutputStream fos = new FileOutputStream("test.txt"); ...
-2
votes
0answers
32 views

c# 2 Threads, 1 writes to a “Queue,” 1 reads from the “Queue” [closed]

c# Note: I'm being figurative with the word "Queue" Thread A is sniffing packets on the network. As packets come in, put them into a "Queue" of some sort. Thread B reads the "Queue", does work, and ...
0
votes
0answers
15 views

Python Paramiko- Have stdin duplicate pointing to stdout so it can be seen in output

I am writing a python script with the paramiko module. It ssh's into a remote hosts, runs script, and automates/answers interactive prompts. It works pretty good so far. For the output, I would like ...
0
votes
1answer
14 views

Can I create a tailable cursor for a query in mongo?

Using mongo and mongoose in node, I can create a stream from a capped collection like this: @stream = Post.find().tailable().stream() But can I do it with a query like this as well?: @stream = ...
0
votes
0answers
26 views

facebook Stream Post URL Security Migration

can someone explain me about this migration? https://developers.facebook.com/roadmap/secure_stream_urls_migration/ all links in stream posts must go to the app's Canvas or Website URL. app's ...
0
votes
1answer
33 views

Processing HttpPostedFile.InputStream before saving using SaveAs()

I need to check if a file is compressed before saving it. I have created the following extension method to check if the file is compressed using ZipFile (from the SharpLibZip library): public static ...
2
votes
1answer
48 views

In what practical case bool(std::ifstream) != std::ifstream::good()?

I would like to know in what case we can have : bool(std::ifstream) != std::ifstream::good() The difference is that bool(std::ifstream) does not test the eof bit whereas std::ifstream::good() tests ...
1
vote
3answers
49 views

Order of calls and side effects

Consider an operation like this : int a = f1(mystream)*f2(mystream)+f3(mystream); Where f1, f2, f3 are of the following form : int f(std::istream&) or int f(std::ostream&) Do I have ...
2
votes
1answer
19 views

Is it possible to determine whether a read from SecureStream will block?

Can I determine whether reading a single byte from a SecureStream will block? The underlying stream is a NetworkStream, which has the DataAvailable property, but I expect that the SecureStream needs ...
-1
votes
1answer
44 views

Delphi ReadStreamStr, WriteStreamStr implementation check

I'm using these implementations that I found on another post on SO. But when reading a string in sometimes, ReadStreamStr puts in extra characters into the string. So I'm posting my implementation ...
1
vote
1answer
39 views

Zip stream implementation with C in embedded devices

I have to embed a large text file in the limited space of internal memory of a MCU. This MCU will use the content of the text file for some purposes later. The memory limitation dos not allow me to ...
0
votes
1answer
56 views

Convert escaped string to bytearray or stream; c#

My input string consists of a mixture of unicode escape characters with regular characters mixed in. Example: ...
0
votes
0answers
26 views

Handling streams while Batch Printing RDLC reports from a console application

I am printing reports from a console application. I started off using the manner prescribed by Microsoft ( http://msdn.microsoft.com/en-us/library/ms252172(v=vs.100).aspx). In this technique, one ...
1
vote
3answers
44 views

File.Open Cross Thread Writing

Is it safe to open a file and write a stream to it across multiple threads? If no what could I implement to make it safe?
0
votes
0answers
10 views

WCF How to detect client disconnect when transfermode = streaming and encoding is MTOM

I wrote a WCF service that exposes a method to allow a client to upload/stream me a file. It works great, but I noticed that if the client drops their connection (their computer powers down or network ...
0
votes
1answer
32 views

why is EOFException used mainly by data input streams?

From Java API public class EOFException extends IOException Signals that an end of file or end of stream has been reached unexpectedly during input. This exception is mainly used by ...

1 2 3 4 5 86