0
votes
0answers
13 views

Reading “null”s from binary file

I wrote a small function that reads binary file to a byte array. But there is 1 bin file that when I'm reading it, it gives me "null"s (if its char[]) or zeros (if its byte[]), I see it when I'm in ...
3
votes
1answer
45 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
1answer
38 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 ?
1
vote
4answers
32 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() ...
0
votes
0answers
17 views

Message "Operation not permitted on IsolatedStorageFileStream

I have a project on a windows phone in c# with two separate pages each page has identical code on Page 1 works. Page 2 throws "Operation not permitted on IsolatedStorageFileStream" I have run them ...
0
votes
1answer
64 views

php - let the visitor download a remote file, chunk by chunk (range)

It's a recurring question on StackOverflow and i've browsed to all existing suggestions unsuccessfully. Here's what I'm trying to achieve: - visitor comes to my webpage and i have to send him a very ...
1
vote
1answer
46 views

Difference between returning a Stream and writing to HTTP output stream

What is the difference when returning files between public Stream getFile(string filename){ Stream s = _getFileStream(filename); Response.AddHeader( "Content-Disposition", ...
0
votes
0answers
20 views

Adding audio data from file to an AudioGroup to send over RTP

I am trying to stream audio data read from a file to a remote client over RTP. I have no clue how to add audio data from a file(mp3) to an AudioStream object. I can hear microphone data clearly, but ...
0
votes
1answer
59 views

warning: control reaches end of non-void function [-Wreturn-type]

error message is in the tittle. does anyone know whats wrong? i want to clear this warning. im clueless. const std::string loadShaderFromFile(std::string shaderFilePath) { // load file ...
0
votes
1answer
36 views

InputStream containing multiple files

I try to send multiple Files from my Server (NanoHttpd) to my Client (Apache DefaultHttpClient). My approach is to send multiple files via one Response of NanoHttpd. I can only send one InputStream in ...
0
votes
1answer
43 views

Java SequenceInputStream

I try to send multiple Files from my Server (NanoHttpd) to my Client (Apache DefaultHttpClient). My approach is to send multiple files via one Response of NanoHttpd. For this purpose i wanted to use ...
0
votes
3answers
85 views

File not found exception in windows c#

the application runs well the first time when I open a file, read its content and save it. But when I open the same file again , I get file not found exception. How do I refresh the stream? ...
0
votes
1answer
63 views

How to receive H264 stream via RTP and store to file?

I'm trying to make a server that receives RTP/H264 video streams from android clients and stores these to file. Currently I'm using VLC in the server, which works well. However, I am worried that ...
0
votes
2answers
94 views

How can I stream pdf file of size upto (1 GB) from a server to client in a downloadable form in C#

I have a pdf file (could be upto couple of GBs) on a server. I want to send it to client so that the client can download it on his local machine. I guess I need to use Stream class in C# to get the ...
0
votes
1answer
63 views

Tips for searching and replacing file contents in entire filesystem

I am in charge of developing an application for running on production servers and it aims to search and replace some specific string in every ini, xml and config file extensions and I must care about ...
2
votes
2answers
63 views

how to export the text file in mvc?

I generate the text file in my code using the stream writer using mvc format for web application . But my text file not download the my page? my sample code is below: // file have the all values in ...
0
votes
1answer
39 views

how to set the file path in netbeans within the same build directory?

I want to set the path for my file that i'm going to read without having to specify the root directories or the whole path. like this : File file = new File("Text01.txt"); or Path file = ...
0
votes
1answer
107 views

Java save data from LinkedList to a file

Ok, im currently developing a stock control system, and i have it working, but i want to add a feature so it can save the linked list to a file and have a method to do this called saveData() then ill ...
5
votes
1answer
142 views

Decrypting XOR-encrypted file aborts prematurely

Using a simple functor called Encryptor struct Encryptor { char m_bKey; Encryptor(char bKey) : m_bKey(bKey) {} char operator()(char bInput) { return bInput ^ m_bKey++; } }; ...
0
votes
1answer
44 views

Java sockets and file Streaming

I have a basic question on files ... It seems that I am stuck. I am creating a server-client socket. The client sends a random number of integers to the server using an iterative way and the methods ...
0
votes
3answers
94 views

reading 7 variables (1 line per variable) from a file and assigning to struct variables

I'm making a simple enrollment system that maintains a database of a collection of computer science students. Each student record contains #include <stdio.h> #include <stdlib.h> #include ...
0
votes
1answer
82 views

HTTP requests with file_get_contents, getting the response code

I'm trying to use file_get_contents together with stream_context_create to make POST requests. My code so far: $options = array('http' => array( 'method' => 'POST', ...
0
votes
1answer
61 views

How to change the first 512 bytes of a file?

I have got a large file in PHP of which I would like to replace the first 512 bytes with some other 512 bytes. Is there any PHP function that helps me with that?
0
votes
3answers
72 views

How create a FILE* from char * without create a temporary file

I'm creating a program using lex and yacc to parse text, but i need create a parser of various content. I don't wish use the stdin, if i using FILE *yyin to specify the input, i can change the ...
0
votes
3answers
55 views

Java: Reading file in two parts - partly as String and partly as byte[]

I have a file which is split in two parts by "\n\n" - first part is not too long String and second is byte array, which can be quite long. I am trying to read the file as follows: byte[] result; ...
0
votes
2answers
61 views

Read and write from a file in different classes without having to close the stream in java

hey everyone :] just wondering if is it possible to read and write from a file in different classes without having to close the stream and start over again? i need to use DataOutputStream and ...
0
votes
2answers
73 views

Equivalent function of fgets for open

With fopen() I read the file line by line with fgets(). Are there a function like fgets() inorder to read stream opened by open() ?
1
vote
2answers
111 views

streaming a file while hes being written in WCF

I have a Server Application who EXEC another app, that second app builds a log file, and I want the server to send it to a client via WCF. I want the client to read the log while the EXEC app update ...
0
votes
0answers
27 views

Retrieve each different InputStream composing a SequenceInputStream

I'm trying to stream files, with Java, from a Sybase database to the presentation layer of my application, when a client clicks on the download button. Streaming the files from the database is ok. ...
0
votes
2answers
101 views

2 Threads, 1 File

Since this can't be solved so easily how can I implement 1 thread that writes strings to a file / buffer line by line using Console.WriteLine() and another thread that reads those strings from the ...
2
votes
2answers
129 views

Return in a 'finally' statement

I'm trying to read ObjectOutputStream from a file and convert it to an arraylist. This whole thing is happening inside a method which should read the file and return the array list: public static ...
0
votes
0answers
120 views

Does Response.Output in ASP.NET modifies the encoding of the files in the stream?

In my ASP.NET Web Forms application, I have to let user download XML files. In order to do that, when they press the download button the following code is executed: Response.Clear() ...
0
votes
2answers
215 views

How to read Swedish characters properly from a txt file

I am reading a file (line by line) full of Swedish characters like ÀÄö but how can I read and save the strings with Swedish characters. Here is my code and I am using UTF8 encoding: TextReader tr = ...
2
votes
3answers
159 views

C++ How to read the specific element from a text file into a array?

What I'm trying to do is, now I know the index of number "10", and I want to read it into the ary. #include <iostream> #include <fstream> using namespace std; int ary[1]; ifstream ...
0
votes
2answers
163 views

Data from byte array

I'm trying to read the bytes in the stream at each frame. I want to be able to read the position and the timestamp information that is stored on a file I have created. The stream is a stream of ...
1
vote
1answer
83 views

Trying to accept a socket connection, retrieve and process a message, and then write this message to the terminal

I need to write a program to retrieve and process a message through a socket. I have no trouble and understand the process of creating the socket, binding the socket, listening for the incoming ...
3
votes
3answers
154 views

JDK7 Files.copy

In the OpenJDK7 project java.nio.file.Files, there is the following function. My question is, should the while loop condition be >= instead of >? This is because the source.read javadoc says that when ...
0
votes
3answers
362 views

createReadStream send file http

I'm trying to open an img file and send it through http. I have read that the best method for doing it is creatReadStream because it's async and better for performance. Here it's my code: var file = ...
0
votes
2answers
2k views

save stream to file in c# and winrt

I have in c# and winrt: var stream = await speech.GetSpeakStreamAsync(SpeechText.Text, language); stream is a Windows.Storage.Streams.IRandomAccessStream So I am completly new to c# and winrt. ...
4
votes
3answers
798 views

ReadAllLines for a Stream object?

There exists a File.ReadAllLines but not a Stream.ReadAllLines. using (Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("Test_Resources.Resources.Accounts.txt")) using ...
0
votes
0answers
40 views

Using Temporary Files [duplicate]

Possible Duplicate: C++ - Writing to a Temporary File I have the following program written in the C++ language: The problem with this program is that once the temporary file is created, it ...
0
votes
1answer
163 views

Writing to a Temporary File

I have the following program in C++: #include "stdafx.h" #include <fstream> #include <iostream> #include <sstream> #include <string> #include <string.h> #include ...
0
votes
1answer
52 views

Bad reading from file (0 or “” values readed)

This is the definition of my class: class BPP { unsigned n; /* nÂș de instancias */ vector<string> nombre_instancia; /* nombre de la instancia*/ ...
5
votes
2answers
173 views

std::ifstream::read or std::ofstream::write with a zero parameter?

Is it perfectly ok (= well defined behaviour according to the standard) to call : mystream.read(buffer, 0); or mystream.write(buffer, 0); (and of course nothing will be read or written). I ...
3
votes
1answer
981 views

ffmpeg: which file formats support stdin usage?

I know ffmpeg is able to read data from stdin rather than reading from disk using ffmpeg -i -. Is this supported for all file formats? If it is not, is there a list which file formats are supported?
1
vote
1answer
161 views

Large binary file copy with standard C++ [duplicate]

Possible Duplicate: Copy a file in an sane, safe and efficient way I've searched for similar topics, but I couldn't find the answer for large binary files. Considering that I have very ...
0
votes
1answer
61 views

Not good stream at opening?

When I open a file in binary mode, does a situation exist where is_open() is true but good() is false ? bool ok = false; std::ifstream stream("test.dat", std::ios::binary) if (stream.is_open()) { ...
0
votes
2answers
2k views

Fastest way to check if a file exist using standard C++/C++11/C?

I would like to find the fastest way to check if a file exist in standard c++11(or)c++(or)c (I have thousands of files and before doing something on it I need to check if all of them exist). What to ...
0
votes
2answers
538 views

std::streampos, std::streamoff and std::streamsize to long long int?

To measure position/offsets/size of streams, the standard specify std::streampos, std::streamoff and std::streamsize, but they are implementation defined. How to convert these types to long long int ...
1
vote
2answers
110 views

saving text to a file

I have a question that's driving me nuts. I have a program that saves error messages to a string in an object, then writes the string to a file in the unloadContent() thing. For some reason I keep ...

1 2 3 4