- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在将 vector 数组写入 ofstream 文件,但是某些值没有被写入,即:
#include <iostream>
#include <vector>
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;
int main (){
char * hold = new char [100];
vector<double> fx(2049);
ifstream inputFile;
ofstream myFile;
inputFile.open("data.txt");
myFile.open("test.txt");
for (int c=0; c<2049; c++){
inputFile.getline(hold, 100);
fx[c] = atof(hold);
}
for (int c=0; c<2049; c++){
myFile << fx[c] << "\n";
}
}
在fx中,后半部分全部等于0。(fx[1024]到fx[2048]==0)。然而,在 test.txt 中,这些 0 值都不存在,应用回车。有什么想法吗?谢谢! (这些问题的格式是新手……如果有任何提示可以使这个问题更容易理解,我们将不胜感激。)
注意:我意识到这个程序相当多余。实际的程序有更多的功能,这只是一个工作不正常的地方。
最佳答案
试试这个
#include <iostream>
#include <vector>
#include <fstream>
#include <string>
#include <cstdlib>
#define MAX_FILE_LINES 2048
using namespace std;
//genarate random double number
double fRand()
{
double fMin = 100, fMax = 200;
double f = (double)rand();
return fMin + (f / (fMax - fMin));
}
//init file (if you need to create sample file with list of double numbers, you can use this function)
void fileInit(){
ofstream sourceFile;
sourceFile.open("D:\\source.txt");
if (sourceFile.is_open())
{
for (int i=0; i<MAX_FILE_LINES; i++){
sourceFile << fRand() << endl;
}
}
}
int main (){
string buffer;
vector<double> fx(MAX_FILE_LINES);
ifstream sourceFile;
ofstream destinationFile;
sourceFile.open("D:\\source.txt");
destinationFile.open("D:\\destination.txt");
//reading file lines to vector
int lineCount =0;
if (sourceFile.is_open())
{
while ( sourceFile.good() )
{
getline (sourceFile,buffer);
fx[lineCount] = atof(buffer.c_str());
lineCount++;
if (lineCount == (MAX_FILE_LINES-1)){
break;
}
}
sourceFile.close();
}
//write lines to new file
if (destinationFile.is_open())
{
for (int i=0; i<MAX_FILE_LINES; i++){
destinationFile << fx[i] << endl;
}
}
}
关于c++ - fstream 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15627384/
我需要能够创建一个不存在的文件。设计如下:我有 1 个线程用于所有文件 IO,并且在封装文件的数据结构中,我有一个 std::fstream file_handle。 我可以在模式 - std::fs
如标题所说,以fstream::out 模式打开fstream 会清除其当前内容吗?如果不是,使用 fstream 库删除 .txt 文件的最佳方法是什么。 C++ fstream 库中 EOF 的等
我只是想写(追加)到一个日志文件。我在这里查了一下: http://www.cplusplus.com/reference/iostream/fstream/open/ 这就是我所做的 #includ
我最近使用 fstream 完成一项家庭作业,我想知道这两个东西是如何工作的。 #include #include using namespace std; int main(int argc,
我将如何为 seekp 获取输入并将其用于 hex?是这样的吗? Cin>>hex>>mychar; 如何打印正确的十六进制值?说在 0x16 字节是 FF 或 255 无符号 8 位(十进制?)当我
据我所知,read() 和 write() 在那里,所以我们可以直接从文件读取字节或向文件写入字节,我被教导byte 在 c++ 中的等价物是 unsigned char,那么为什么他们将 char
所以我尝试编写一个小程序,当我尝试从 .txt 文件输入负数时,我的程序失败了,只是在第一个负数之后输出随机数。 #include #include #include #include usi
我的计算机类(class)有一个代码编写作业,其中包括 fstream 类(class)。我必须编写一个代码来管理和存储用户数据。 我在类里面很难理解这个概念,而 C++ 教科书只想继续向我展示 IP
我无法在文件中间写入文本。我可以正确找到添加文本的位置,并且可以使用 tellg()/tellp() 检查它。但是,在 seekp() 之后,我添加了新文本: myfstream << "new te
我正在尝试制作一个程序,该程序将从一个文件读取并根据输入整数输出到另一个文件,该值与读入的值不同。我在打开文件时遇到错误。没有匹配的调用函数 #include #include #include
当文件位于特定位置时,我遇到了 fstream 无法写入文件的问题。在下面的代码中,当注释行被取消注释时,文件被写入,但是当它被注释时,文件根本没有被写入。我添加了一堆控制台输出,它表示围绕“outp
我在这个网站上搜索了很多几乎相同的问题,但没有一个对我有用。首先,让我告诉你我正在使用 Code::Blocks 并且我正在使用 Ubuntu。这是我的代码: #include #include
我正在尝试将一些内容写入文本文件,但它甚至无法创建文件。如果您能帮助我,我将不胜感激。谢谢。 #include #include int main(){ std::ofstream fil
我现在尝试将一些整数值写入文件,然后使用 fstream 读取它。这是我的做法: #include #include #include #include typedef u
我是 C++ 编程的新手,遇到了一个问题。我将代码块 IDE 与它附带的默认编译器一起使用。 我的问题是,当我编写这段代码时,为什么没有在我的桌面上创建一个文件? #include #include
当我向文件流写入一个 double ,然后写入一个整数时,整数会作为额外数字附加到 double ,我不知道为什么会这样。有人可以为我解释一下吗?最小示例: #include #include i
我正在尝试序列化我的类的一些私有(private)属性: class Task { public: enum Status { COMPLETED, PENDIENT };
我一直在研究 C++ 中的 fstream 类,看看我是否能够将一些数据写入文本文件 (.txt)。据我所知,如果程序试图写入一个不存在的文件,那么它会自动创建该文件,我错了吗?这个程序非常简单,没有
我在我的代码中找不到问题。 readFile 函数运行良好,但 writeFile 函数不会对文件进行任何更改: #include #include using namespace std; co
如果您的文件系统有很多交叉链接文件,是否有一种好方法可以确保文件内容与您编写的内容相同。 问题是当我写入文件内容时关闭文件并重新打开它文件被其他文件中的其他行损坏。因此,如果我在文件中写入“AAA”,
我是一名优秀的程序员,十分优秀!