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 ...
-1
votes
4answers
58 views

Check for continuous order in array in javascript

var userInput = prompt('enter number here'); var number = new Array(userInput.toString().split('')); if (number ????){ //checks if the number is in a continuous stream alert(correct); } else{ ...
1
vote
1answer
19 views

Get a substr of a long stream

I want to read only some finite characters of beginnings of some long streams, but file_get_contents does not support seek operations, and I must first read the whole stream to extract the desired ...
-7
votes
0answers
28 views

String to byte[] and byte[] to String doesn't work [closed]

I am learning about java PipedInputStream and PipedOutputStream. I have written myself a program to test the pipe functionality. The output of the code below is: 16 32 [B@11671b2 However I ...
1
vote
2answers
123 views

Split and Process a String in C++ into Different Variables

I have a text file containing a bunch of data which is actually a student list. The structure is like: "Name" "Telephone" "Gender" "StudentID" "Email" Here is a sample of the list: Roger Pont ...
0
votes
3answers
101 views

convert string to stream

I'm trying to return a large .csv file as an action result using the Controller.File method, and it requires that I use either a byte[] or a Stream. When using GetBytes method, I'm getting an ...
1
vote
1answer
57 views

String1.equalsIgnoreCase(String2) returns false even though both have same value

In my app, I am reading from HTTP page and converting the Stream via the below method into String. public static String convertStreamToString(java.io.InputStream is) { java.util.Scanner s = new ...
-4
votes
1answer
44 views

How to read string from streams [closed]

Dim adult = ...
0
votes
1answer
31 views

How to use any stream on wstring to extract data

I was reading data from a file using wifstream the txt file looks like this: 1,2,3,4,5,6,7 2,3,4,5,6,7,8 ... ... each number is an id I needed for my program and comma is the separator Here is my ...
0
votes
0answers
87 views

stream xor cipher

I am very new to C programming but i was working on cryptography for ipsec and am trying to write a code for implementing a simple code for a stream cipher which will take a 20 charecter long string ...
0
votes
2answers
83 views

Difference between sending text as string and text between quotation marks

I use mysql++ library to connect to my database. I've created a Connection and Query: Connection conn(false); conn.connect("database", "localhost", "user", "pass"); Query query = conn.query(); Then ...
-2
votes
3answers
66 views

How to separate strings in an istream only by '\n'? [duplicate]

Given a file that contains a string "Hello World" (Note that there is a space between 'Hello' and 'World'). int main() { ofstream fout("test.txt"); fout.write("Hello World", 12); ...
1
vote
1answer
123 views

Very strange stringstream and std::getline behaviour

I'm fightning with a map loading bug in my engine, and finally I found it. However, it seems it's something wrong with stringstream and getline... Minimal code: #include <string> #include ...
1
vote
1answer
339 views

How to do “getline” from a std::string?

I have a problem. I load the whole file and then getline through it to get some info. However in the map format there may be 0 or 20 "lines" with the info. I need to know how to getline through ...
0
votes
2answers
664 views

Splitting a stringstream which contains comma separated entries

I have two strings that look as follows: string text1 = "you,are,good"; string text2 = "1,2,3,4,5"; stringstream t1(text1); stringstream t2(text2); I'm using the following code to to parse it as ...
2
votes
1answer
250 views

A string feeding a textfieldparser in vb.net

Before I ask I just want to say that I HAVE looked this up, and I just can't figure it out. So I've got a web call returning an incredibly long string of text that I need to split up. I want to use ...
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*/ ...
0
votes
3answers
210 views

reading string from file segmentation fault (core dumped)

class BPP { unsigned n; /* nº de instancias */ vector<string> nombre_instancia; /* nombre de la instancia*/ In the constructor, I get a segmentation ...
1
vote
3answers
182 views

Are ifstream/ofstream really used for serialization?

I am using ifstream and and ostream to serialize my data but I am surprised to discover the `<<' operator can't seperate two adjacent strings and seperating them would be quite complicated. ...
3
votes
3answers
736 views

How to create streams from string in Node.Js?

I am using a library that expects either a file or a stream but I have a string. How do I convert that string into a stream in node?
-2
votes
1answer
161 views

opening a file that has spaces in its name

I have a problem opening files in C++ that has spaces in its name. For instance, to open the file: read me.txt This is the code I have so far involving one command that reads a file and outputs the ...
1
vote
2answers
101 views

Tokenizing a String

What I'm trying to do is input a date following this format Wednesday 7:05 PM Then separate it into tokens to put in a struct i have. My main problem is the stringstream object i am using doesn't ...
0
votes
1answer
78 views

Character set with std::string, cout, ofstream and sockets

I'm trying to send strings over a windows socket connection that contain characters like "á" that are outside the ASCII table. I hear garbage comming out the other end when I try something like this: ...
0
votes
3answers
143 views

How to read a line of string from a particular location

I'm working with a really really big file. I'm talking about gigabyte big. I need to be able to read a line from a particular index as the textfile is consistently being updated. What is the fastest ...
1
vote
1answer
967 views

Android - Write byte array to OutputStreamWriter

I have an application that uploads photos through a web service. In the past, I loaded a file into a stream, and converted to Base64. Then I posted the resulting string through the write() method of ...
0
votes
1answer
106 views

Skipping Commented Lines with QStrings

I would like to skip over commented lines in the text file that I am parsing using QStrings. How would one go about skipping over any line that starts with the character '#' for example? This is ...
-2
votes
4answers
875 views

Convert a “TMemoryStream” to “String” and vice-versa

I'm downloading a file from the web using IdHttp, like this: var MS: TMemoryStream; procedure Test1; var Http: TIdHTTP; begin Http := TIdHTTP.Create(nil); try MS := TMemoryStream.Create; ...
3
votes
1answer
271 views

stringstream >> inconsistent '\n' delimiter behaviour

I have the following function to read in a stream of text and chop it up into a vector of a given type: template<class Type> void parse_string(std::vector<Type> &type_vector, char ...
0
votes
2answers
1k views

Cannot resolve to a variable

Ok, so, im having trouble with this program im writing, it all seems to work, except this one last thing, it keeps saying that it cannot resolve compute to a variable. heres my code. I need to make ...
0
votes
1answer
759 views

Write string to a stream using utf16 encoding

My code: public static void DoStrumienia (string pString, Stream pStream) { if (pStream == null) throw new ArgumentNullException (); BinaryWriter bw = new ...
3
votes
2answers
75 views

Standard Stream Printing Unrelated Characters

I was coding something and my code didn't work correctly in some situations, so I decided to write some output to file for debugging. The program just concatenates some characters from a string (and ...
0
votes
4answers
577 views

how to set an output stream java

i mean if i have to create a method some kind of a: void setOutputStream(PrintStream stream). so the stream variable is an output stream where i'll write my data(which will preferrebly be a String ...
1
vote
4answers
2k views

Exception “String cannot be of Zero length”

We are trying to read each word from a text file and replace it with another word. For smaller text files, it works well. But for larger text files we keep getting the exception: "String cannot be of ...
2
votes
4answers
1k views

Getting “Index was outside the bounds of the array” exception

we have a datatable "st" with two columns "word" and "binary" void replace() { string s1="", s2=""; StreamReader streamReader; streamReader = ...
1
vote
1answer
406 views

ostringstream is an undefined type?

In my C++ project I'm trying to do this: std::ostringstream stream(std::ostringstream::out); But I'm getting an error: error C2027: use of undefined type ...
3
votes
1answer
4k views

C++ Int to String by using ostringstream or stringstream

I've been learning C++ for about a month now and I do have a question about stringstreams, I've been using stringstream to convert Integer to String, but then I realized same operation can be done ...
2
votes
5answers
4k views

How to split a space separated string into multiple strings in C++?

Somewhat my code looks like below: static int myfunc(const string& stringInput) { string word; stringstream ss; ss << stringInput; while(ss >> word) { ...
0
votes
2answers
509 views

Read portions of an ifstream into a string object?

I'm trying to read an ifstream into a string, where I can set the number of characters being read. I've read the documentation for ifstream.get() and ifstream.getline(), but neither of those ...
2
votes
3answers
186 views

use operator << to push std::strings in a vector

How it possible to use operator<< to push strings into a vector. I searched a lot but only find stream examples. class CStringData { vector< string > myData; // ... // ...
3
votes
3answers
180 views

What is the simplest way to convert a string to a stream?

Today, I use a memory stream : new MemoryStream(Encoding.UTF8.GetBytes(str)) Is there a simpler / better way ? Thank you !
2
votes
3answers
276 views

How to partially read from a TStringStream, free the read data from the stream and keep the rest (the unread data)?

What I want to do: lets suppose I have a TStringStream that just read a string with 100 characters. If I call .ReadString(50), I will get the first 50 characters of this stream and its cursor is going ...
2
votes
2answers
152 views

Why printing '\0' will nullify the rest of the line in Java?

I find out to my puzzlement that the following snippet: void print() { System.out.print("!"); System.out.print("!\0"); System.out.flush(); // This line does not affect the outcome ...
0
votes
1answer
116 views

istringstream not working when the line has been taken as input from console but working with a file

Here is a code that I am using to read an input from console. It reads the first line, using the string stream it also reads the words from that string, but just after that it crashes. The same thing ...
0
votes
1answer
159 views

What is the best, cross platfrom, way to parse a text file?

I would like to port my Windows code to native C++ and need to get rid of all CLI code. I found .NET very helpful in parsing textual input but when I started re-writing it in C++ I was still wont to ...
0
votes
1answer
400 views

QTextStream and std out

I have the code: QTextStream out(mFileHandle); out << (QTime::currentTime().toString(Qt::LocalDate) + " - ").toAscii(); out << "Something another"; std::cout << "Data: \n"; ...
0
votes
1answer
214 views

What's the difference between putting std::string and std::string::c_str() into a stringstream?

We're seeing a strange scenario that basically boils down to the following: std::string something = "someval"; std::stringstream s; s << something; std::cout << s.str(); is not equal ...
3
votes
3answers
3k views

how to clear the content in the String stream.?

can any one tell me how to clear the content of the stringstream..? i tried the following but it didnt work. stringstream ss; ss<<"bala"<<"murugan"; cout<<ss.str(); //Output ...
1
vote
3answers
160 views

C++ newbie: using stream for writing data to file… Why does my code introduce a carriage return?

I have written code for performing calculations. There is a loop in the code. Each loop corresponds to a different time. For each loop, I want to write a string to an external file. The string ...
53
votes
9answers
19k views

how to generate a stream from a string?

I need to write a unit test for a method that takes a stream which comes from a txt file, I would like to do do something like this: Stream s = GenerateStreamFromString("a,b \n c,d");
686
votes
22answers
376k views

Read/convert an InputStream to a String

If you have java.io.InputStream object, how should you process that object and produce a String? Suppose I have an InputStream that contains text data, and I want to convert this to a String (for ...

1 2