Tagged Questions

4
votes
5answers
242 views

C++ Line into Vector

Wow I've been all over the place with questions today and I apologize if they seem to overlap, but for every question comes another question...Since one thing wont work......but I should use something ...
2
votes
3answers
275 views

C++ How to read in objects with a given offset?

Now I have a file with many data in it. And I know the data I need begins at position (long)x and has a given size sizeof(y) How can I get this data?
1
vote
2answers
71 views

.get function with an opened file stream in C++

I have an open input file stream. It is able to open the other file (a txt file) successfully. And by making adjustments to the code right below I can get it read and output the other txt file (all ...
0
votes
1answer
117 views

text file input issues in C++

I am having to read a text file; however, one certain text file is giving me issues. Not only is the text file huge (an entire ebook), but there are also several accented letters. I am reading in ...
-5
votes
0answers
44 views

How to convert a file to a input stream [closed]

I want implement a method that takes a file object as input and then convert it into an input stream. Specificly speaking, i have following java code that i wan to convert into c++. InputStream ...