C++ :: Saving Object To File And Then Loading It
Jan 29, 2013
Why my code is not working?
Interface
class Person{
private:
char name[80];
short age;
public:
void get_data();
[Code] .....
This is a simple example from and old Lafore C++ book, with a few tweaks by me. The point is simple. Save object person to a *.dat file, exit the program, then start up program again, open up *.dat file, and load contents.
The first problem is the compiler is printing a bunch of Asian characters to the file (is this normal?)
The second problem is, it's not loading the object as it should, giving me a bunch of gibberish.
View 9 Replies
ADVERTISEMENT
Oct 13, 2014
I'm struggling loading a class (and it's two derived classes) from an input file. I'm trying to create an array of class objects (and derived objects) and then load them based upon what is in the file.
Main class: Code: class Book
{
protected:
string sTitle;
[Code].....
Basically if the getline get's a P it's supposed to create a new object using the PrintedBook derived class and then store it to an array, if the getline get's to the "A" it's supposed to create an AudioBook object.
What I'm struggling with is writing something to parse the file line by line and create the objects on the fly and then store them into the array.
View 5 Replies
View Related
Jul 11, 2014
i have a gataGidView that already has colomns inside, i want to know how i could possibly load data from a text file into it and then save data once the form is closing, im also having trouble with the separators ( winForm visual S...)
Ive already tried planning it but my way doesn't seem to work, heres my logic :
file load
if (file exists)
{
read file/load data
}
[Code]....
View 5 Replies
View Related
May 21, 2014
Alright i have my program and it loads the vector fine and even puts the vector into a txt file but when it comes to lloading it again im not sure if it works or not
#include <iostream>
#include <string>
#include <fstream>
[Code]....
View 2 Replies
View Related
Sep 10, 2014
The program is supposed to read in a text file, load it into an array and assign a character to each number in the array (so for this I'm thinking I'll be creating 2 arrays, an int array with the numbers read in from the file, and a char array with the characters assigned to the numbers). It will then print these two arrays. It's then supposed to go through the initial int array and search for any numbers whose values differ from their neighboring values by more than one, if such a value is found, it's supposed to give the number the value of the average of it's neighboring values. It's supposed to make all these corrections and then assign characters to these corrected numbers and print out both arrays.
How to load the array from the file. My textbook seems to do a good job of covering arrays and files, but it doesn't really bring them together and talk about building arrays from files. Here is what the file looks like, the first number is the size of the array.
10
7 6 9 4 5 4 3 2 1 0
6 5 5 5 6 5 4 3 2 1
6 5 6 6 7 6 8 4 3 2
1 5 6 7 7 7 6 5 4 3
5 5 6 7 6 7 7 6 5 9
5 6 7 6 5 6 6 5 4 3
5 6 7 9 5 5 6 5 4 3
5 5 6 7 6 6 7 6 5 4
5 9 5 6 7 6 5 0 3 2
5 5 5 5 6 5 4 3 2 7
And here is the code I have so far:
#include <iostream>
#include <fstream>
using namespace std;
[Code]....
When I attempt to compile this (I'm working on a Linux system), I'm getting several errors:
prog1.cpp: In function ?int main()?:
prog1.cpp:37: error: expected unqualified-id before ?[? token
prog1.cpp:39: error: ?numArray? was not declared in this scope
prog1.cpp:39: error: expected primary-expression before ?]? token
View 14 Replies
View Related
Mar 29, 2013
What is the most efficient (fastest) way to load data from a file on HDD to RAM? (which would allow to only load a limited section of that file - eg. load only half of the file etc.)
View 3 Replies
View Related
Apr 21, 2015
I am trying to copy the stats from the save file "lol.txt" to main. I posted what the contents of the file below, but for some reason the I get for output jiberish and I cannot seem to figure out why.
#define _CRT_SECURE_NO_WARNINGS
#define MAX_NAME 31
#include <stdio.h>
int main(void){
char sName[MAX_NAME];
[Code] .....
View 5 Replies
View Related
Feb 12, 2014
Code:
#include<stdlib.h>
FILE *Ptr_file;
Ptr_file =fopen("output.txt", "w");
struct person {
char arcFName[50],arcMName[50],arcLName[50],cGender[2];
int nDay[2],nMnth[2],nYear[4];
[Code] .....
Alright I wrote this code, i know there's some mistakes but how do you go about saving its output into a txt file?
View 4 Replies
View Related
Jul 19, 2013
I'm having troubles with loading my text file into my array.
Code:
int main(int argc,char* argv[]) {
if(argc!=3) {
printf("
Insufficient arguments
[code]...
I'm also suppose to return the size of the input at the end.
View 3 Replies
View Related
Jun 11, 2014
What is the best / most efficient way to load polymorphic data from a file? I thought you could have an enumeration and for each item to load from a file you could have an integer at the start specifying the type of data, but I think there must be a better way I'm just not sure what.
Example of what I mean:
//The syntax isn't really that important for explanation
class base;
class a: base, b: base;
enum polymorphicType {
A,
B
};
and in the loading code you would have (this is the bit I think could be improved):
polymorphicType t;
File >> t;
if(t == A) {
newObject = new A;
} else if(t == B) {
newObject = new B;
}
I think there is probably a more efficient/better way of doing this I am just unaware of it.
View 4 Replies
View Related
May 9, 2014
#include <cstdlib>
#include <stdio.h>
#include <string>
[Code]....
I'm trying to load a file input stream to load all the character content into a variable (say from a .java file for example), but for some reason whenever I type in the name of the file I want to stream I get the report: RUN FAILED (exit value 1, total time 2s)
View 7 Replies
View Related
May 17, 2014
I'm trying to load a file that look like this:
IP:123.123.123.123
Port:12345
I can't figure out how to load multiple lines. I tried using , but I can't get it to work. Is there a better way of doing it than I am right now? This is my code.
char message[100];
int messageCount = 0;
for(unsigned int i = 0; i < file.size(); ++i) {
message[i] = file[i];
[Code] ....
View 1 Replies
View Related
Apr 28, 2014
Heres what I am suppose to do, So it doesnt seem hard to understand my messy code!
1. Gotta load the file "FactoryData.txt"
2. Load all values in my 2D array (array[5][3])
3. Print out the array to ensure that the copying went by well.
Heres my problem:
1. The for loops is REALLY off in my eyes. From my knowledge (correct me if im wrong), its suppose to be for(r=0;r<5;r++) not <=. BUT somehow im getting the results I want (in terms of formatting). HERE IS MY OUTPUT
Quote
300 450 500 510
510 600 750 627
627 100 420 530
530 621 730 200
200 50 58 100
100 83 4 5
Press Enter to return to Quincy...
View 8 Replies
View Related
Mar 18, 2015
I am doing a project in C++ - a simple data base (with "one table"). I want to build that data base using a LIFO or FIFO list, but this doesn't matter here
The only problem I have is that the structure of the data base is not "locked" in the code of the program, but when the program starts, it is "loaded / implemented" from a "configuration file" called "data.txt".
So the user, before she or he runs my program opens the file "data.txt" and writes the structure of the data base that se/he wants to create. This means that one time my program can be used to create a data base of students with fields such as "name / surname / gender / age / idnumber / university" but the next time it can be used for a data base of CD's with fields like - "author / release date / no. of tracks / etc.".
How to do that "loading" of a structure of a data base from a file, when the user runs my data-base creator (my C++ program).
View 1 Replies
View Related
May 25, 2012
I want to display a bmp file of resolution 600*420 (using c compiler like code block ) by manual loading. I tried to display the image by loading the pixel value. but this method has a limitation that it take up pixel value of image upto 64kb size.
So now i am trying to load it manually. What are the steps that i has to follow, what are the header files that i has to use ?
My system specification are windows xp professional , intel pentium 4 cpu. I don't know where to start ,does this method has any limitaton ,...etc ........
View 2 Replies
View Related
Mar 18, 2015
I am doing a project in C++ - a simple data base (with "one table").
I want to build that data base using a LIFO or FIFO list, but this doesn't matter here . The only problem I have is that the structure of the data base is not "locked" in the code of the program, but when the program starts, it is "loaded / implemented" from a "configuration file" called "data.txt".
So the user, before she or he runs my program opens the file "data.txt" and writes the structure of the data base that se/he wants to create. This means that one time my program can be used to create a data base of students with fields such as "name / surname / gender / age / idnumber / university" but the next time it can be used for a data base of CD's with fields like - "author / release date / no. of tracks / etc.".
How to do that "loading" of a structure of a data base from a file, when the user runs my data-base creator (my C++ program).
View 2 Replies
View Related
Mar 16, 2015
I know how to save/open files but im just confused on where to write the code for it in this block of code :
#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
using namespace std;
const int NUM_MONTHS = 12;// Number of months
const int NUM_CATEGORIES = 6;// Number of categories
[Code] .....
View 5 Replies
View Related
Mar 17, 2013
Right now I'm working on an assignment where I need to take the data from on file encrypt it by adding 5 to each byte and then save it to a user specified location. I think I'm close to having it done but I've run into a hick up. After I get the user input for where the encrypted data should be saved the program seems to never end. This is the code I have so far
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
ifstream input;
ofstream output;
[Code]...
View 1 Replies
View Related
Sep 4, 2014
I've been making a multilayer game for a while and have a config that the game loads for the IP and stuff. I just recently put all the loading stuff into a function just so its easier to go through the code, but now the game isn't really working. It works fine on my computer connecting to the server myself, but when someone else tries to do it it seems like the game is working like it says the IP and everything from the config. When it tries to connect it either doesn't work or crashes just saying the program stopped working. Here is the code... I don't know if this is what is causing it to not work or something else.
string LoadConfig(int &loadPort, bool &fullscreen) {
string file;
string loadIP;
vector<string> fileLines;
fstream config("config.txt");
if (config.good()) {
[Code] ....
View 3 Replies
View Related
Jan 25, 2015
I am currently working on a project that requires me to "load the data in the file into array at the beginning of the program."
I have a text file with data, and I need to populate an array with the information. From then on, I am supposed to be able to add, display, and search that array. However, I can't figure out how to add the data from the file into an array. I was trying to find out how to search the text file itself. So it threw me off balance and I've been staring so long at the screen I can't really focus.
View 7 Replies
View Related
Feb 7, 2015
I want to load a file to rich text box component. I have this line:
richTextBox1->LoadFile("StudentaiRez.txt", RichTextBoxStreamType->PlainText);
But I get an error when I try to pass second parameter. It says : type name is not allowed.
I probably write it wrong, but I can't remember the correct way. In examples I only see that instead of -> dot is used, but it doesn't work either.
View 1 Replies
View Related
Aug 3, 2013
I am developing a win form application with sq l server2005, in client system after install the application I created the folder for storing the database of running application, like that I have every year database separately, My doubt is how to connect the particular year database while loading the app?
View 1 Replies
View Related
Jan 12, 2014
I want to take the informaition from this file and save it into a struct the file conteins name age year (in char) and a grade it is somthing like this
file
Nikos Tolis 19 A 8
Iwanna Nikolaou 20 B 9
Kwstas Doukas 20 Β 6
Georgios Pappas 19 A 7
Iwannis Lekatis 20 Β 7
Nikos Ntoumas 19 A 5
Maria Oikonomou 20 B 6
Kwstas Argyrou 19 A 10
Irw Ntouma 20 B 8
Leuteris Doukas 19 A 6
I want to read till i found the '32' the space in ascii here is my code so far
Code:
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct students
{
char *name;
int age;
[Code] ....
View 2 Replies
View Related
Feb 21, 2015
My project involves writing a c program to generate a set of 70 decimal numbers. I want to save the output (these 70 numbers) as a txt file. I tried the following:
1. prt scr of output screen and pasting it in notepad. NOT WORKING
2. going to DOS SHELL and doing the following:
c:TCBIN>output.exe>>output.txt
NOT WORKING. Text file is generated, but it does not contain output. It just says:
illegal command: output.exe
What do I do?
View 2 Replies
View Related
Sep 13, 2013
I have a problem when i try to save unicode to a .txt file.
I need to store in a file names that will have letters like "ăĂâÂșȘțȚîÎ"
wchar_t name []=L"ăĂâÂșȘțȚîÎ";
FILE* fang;
fang= _wfopen( L"test.txt",L"wt+,ccs=UNICODE");
fwprintf (fang, L"%ls ",name);
When i open my text file i get this: ??âÂ????îÎ
if i use
fang=fopen("test.txt","a");
I get the same result
and for
fang=fopen("ang.txt","a,css=UNICODE");
I get a runtime eroror "invalid file open mode"
View 2 Replies
View Related
Apr 21, 2014
I have been working a while with saving and retrieve structs, and I still have not got it to work. I get Segmentation fault sh "${SHFILE} . I have search this error, and it has something to do with memory, but what, since I am a beginner with saving and retrieving files. The project runs fine, and the error stated above outputs into my console window as text.
Here are my two structs:
struct checkbook {
char id[50];
double value[50];
};
struct fbook {
[Code] ....
Here is how I save and retrieve my structs:
void saveCheckbook (string file, checkbook checkbook, double initial, int counter) {
string path = "C:UsersAshwinGoogle DriveC++Checkbook" + file;
fbook save;
save.counter = counter;
save.initial = initial;
save.book = checkbook;
[Code] ...
View 1 Replies
View Related