- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
一段时间以来,我一直在努力弄清楚我的大型项目的这一小部分。它也让我很困惑......我正在尝试从 Excel CSV 文件(参见 Example.CSV)中获取信息并将其输入到 Cpp 项目中......现在在我开始处理它之前,我想我可能会首先运行你们的一些其他方法,看看你们认为哪种方法最有效?
1: Example1.csv: Item Values 仍然遵循; sSwordName、lvlReq、minAtk、maxAtk、atkRate、sPrice、sValue、strReq、atkReq、intReq
。列标题如 Example.csv 所示。是否理想的做法是制作一个标题,在被告知时从 CSV 文件中提取项目信息,例如:如果玩家在商店,他想评估他的剑。当他单击值按钮时,它会在“Sword.csv”文件中搜索项目 ID(可能)并返回“第 5 个”,因为该项目行中第 5 列的值是它的值(value)。并创建某种功能来为所有事情做这件事?如果是这样,任何想法如何做到这一点。
2:我一直试图让它发挥作用的主要方式:在 Example.csv 中,我有我在程序中使用的所有项目值。它们被分配给 int 和 char 变量,至少这是我的目标。请直接到 Example.cpp 获取我的(失败)代码和解释..
例子.cpp:
#include "stdafx.h"
#include <cstdlib>
#include <fstream>
#include <ios>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <string>
#include <sstream>
using namespace std;
/*** These are the Variables I use for a weapon, they corrospond according to number in list: Wooden Shortsword is first in the
*** sSwordName Array, so it's lvl requirment would be 1 since it is first.
*** Idealy this is the way I want things to work... Unless anyone has a better idea, I am open to hear them. I can always
*** learn more, especially from others. ***/
char sSwordName[10][25] = {"Wooden Shortsword", "Bronze Shortsword", "Iron Shortsword", "Steel Shortsword", "Titanium Shortsword"};
int sSwordLvlR[10] = {1, 3, 5, 6, 10};
int sSwordV[10] = {5, 10, 18, 25, 50};
int sSwordP[10] = {10, 20, 40, 60, 100};
int sSwordMinAtk[10] = {0, 0, 0, 0, 0};
int sSwordMaxAtk[10] = {4, 6, 10, 14, 20};
int sSwordAtkRate[10] = {0, 2, 3, 4, 6};
int sSwordStrR[10] = {1, 6, 11, 16, 22};
int sSwordAtkR[10] = {1, 6, 11, 16, 22};
int sSwordIntR[10] = {1, 3, 5, 8, 12};
/*** Now this is as close as I have been able to get to get this to work, sadly it is still off base...
*** I need it to take for example: Row 1 > Exclude Column 1 > Input Data > Assign to sSwordName[5][25] Array.
*** My issue is, finding a way to loop it where it takes all the cells in Row 1, ignores the first cell
*** (I think making it do like "\n" for it would work? Not sure) and then loop through the rest of the rows
*** repeating the same algorithm, Ignoring the first cell, inputting, assinging them to the variable arrays?
*** It is much much easier to edit item stats and add new items in Excel, than having to do it via code as you
*** may imagine..
*** I am pretty sure my code is far from what would be best, I bet it needs to be re-written a new way as well..
*** I would greatly appreciate Anyone who can help me accomplish this task.. It would really make my life
*** A lot easier, as well as make my project code considerbly shorter.. */
int main()
{
int sSwordLvlR;
double y;
string data;
string a;
ifstream wInv("Example.csv");
while (getline(wInv, data))
{
if (data.empty()) continue;
istringstream ss( data );
{
string inf;
getline( ss, inf );
stringstream( inf ) >> sSwordLvlR;
cout<<" "<<sSwordLvlR;
}
}
system("Pause");
return 0;
}
/* I have not be able to figure out how to make it take the data for the Names yet either */
例子.csv
sSwordName,Wooden Shortsword,Bronze Shortsword,Iron Shortsword,Steel Shortsword,Titanium Shortsword
sSwordLvlR,1,3,5,6,10
sSwordMinAtk,0,0,0,0,0
sSwordMaxAtk,4,6,10,14,20
sSwordAtkRate,0,2,3,4,6
sSwordP,10,20,40,60,100
sSwordV,5,10,18,25,50
sSwordStrR,1,6,11,16,22
sSwordAtkR,1,6,11,16,22
sSwordIntR,1,3,5,8,12
示例 1.csv
sSwordName,lvlReq,minAtk,maxAtk,atkRate,sPrice,sValue,strReq,atkReq,intReq
Wooden Shortsword,1,0,4,0,10,5,1,1,1
Bronze Shortsword,3,0,6,2,20,10,6,6,3
Iron Shortsword,5,0,10,3,40,18,11,11,5
Steel Shortsword,6,0,14,4,60,25,16,16,8
Titanium Shortsword,10,0,20,6,100,50,22,22,12
正如我在 cpp 中所说,我真的非常非常感谢任何可以帮助我将代码编写到理想工作状态的人......以及任何希望贡献想法以改善其整体流程的人......
谢谢大家莲花
外部链接:
Example.cpp - http://pastebin.com/URWTGVq6示例.csv - http://pastebin.com/924wvVX2
最佳答案
你需要的是一个函数,它给定一个包含逗号分隔值的字符串,将返回这些值的 vector (作为字符串)。然后,当您拥有该 vector 时,您可以进行所需的其他处理(忽略第一列,将字符串转换为整数等)
这是那个函数。
#include <vector>
#include <string>
#include <sstream>
#include <iostream>
using namespace std;
vector<string> split_at_commas(const string& row)
{
vector<string> res;
istringstream buf(row);
string s;
while (getline(buf, s, ','))
res.push_back(s);
return res;
}
int main()
{
vector<string> v = split_at_commas("broad sword,abc,123");
cout << v[0] << '\n' << v[1] << '\n' << v[2] << '\n';
}
输出:
阔剑
美国广播公司
123
当您遇到这样的难题时,尝试将其分解成更小的部分会有所帮助。看看你的问题,很明显你需要一个函数来以逗号分隔字符串,所以忘记问题的其余部分并首先编写该函数。然后,当它被编写并运行时,将它应用到问题的其余部分。
编辑
例如,您将如何使用上述函数为 sSwordLvlR 数组赋值
// read the next line from csv file
vector<string> values = split_at_comma(line);
if (values[0] == "sSwordLvlR") // are we at the sSwordLvlR row?
{
for (int i = 1; i < values.size(); ++i) // starting at the second column
{
sSwordLvlR[i - 1] = convert_string_to_integer(vector[i]);
}
}
convert_string_to_integer
是您应该编写的另一个函数,也是您应该如何通过编写较小的函数来分解复杂问题的另一个示例,然后您可以将它们组合起来解决更大的问题。
编辑
要对整个 CSV 文件使用此函数,您必须一次读取文件一行并将 split_at_commas
函数应用于每一行。像这样
string row;
while (getline(wInv, row))
{
vector<string> values = split_at_commas(row);
// do something depending on the values you've got
}
希望这对您有所帮助。
关于c++ - Visual Studio C++ 将 CSV 文件中的数据输入变量数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7213621/
我有两个 csv 文件 file1.csv 和 file2.csv。 file1.csv 包含 4 列。 文件1: Header1,Header2,Header3,Header4 aaaaaaa,bb
我想知道是否有任何方法可以在导入数据库之前测试 CSV 文件? 我有一个包含多列的巨大 CSV 文件,每列都有不同的数据类型和大小。如何测试生成的 CSV 文件中出现的数据是否与每列的大小一致? 还有
我正在从 SCOM 中提取服务器列表,并希望根据包含以下数据的 CSV 检查此列表: Computername,Collection Name Server01,NA - All DA Servers
我有一个包含 24 列的 csv 文件。其中我只想阅读 3 列。我看到 super CSV 是一个非常强大的库,但我不知道如何部分读取 CSV。 partial reading上的链接坏了。 请帮我举
我正在尝试将加特林日志文件导出到 CSV,因为我需要更新 google 电子表格中的所有全局值,因为我的经理需要电子表格中的值。 最佳答案 此 CSV 文件被删除并替换为 JSON 文件,名为 glo
我对 csv 是结构化数据还是半结构化数据感到困惑。 就像 RDBMS 是一个有关系的结构化数据,但 csv 没有关系。 我无法找到确切的答案。 最佳答案 我可以说,具有恒定列和行(二维)的 CSV
我正在使用 pipes-csv 库读取一个 csv 文件。我想先读第一行,然后再读其余的。不幸的是,在 Pipes.Prelude.head 函数返回之后。管道正在以某种方式关闭。有没有办法先读取 c
起初这似乎很明显,但现在我不太确定。 如果 CSV 文件具有以下行: a, 我会将其解释为具有值“a”和“”的两个字段。但是然后查看一个空行,我可以很容易地争辩说它表示一个值为“”的字段。 我接受文件
我正在尝试将列表字典写入 CSV 文件。我希望这些键是 CSV 文件的标题,以及与该键关联的列中的每个键关联的值。 如果我的字典是: {'600': [321.4, 123.5, 564.1, 764
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve thi
是否有任何官方方法允许 CSV 格式的文件允许评论,无论是在其自己的行上还是在行尾? 我尝试检查wikipedia关于此以及RFC 4180但两者都没有提到任何让我相信它不是文件格式的一部分的内容,所
我有一些 csv 格式的数据。然而它们已经是一个字符串,因为我是从 HTTP 请求中获取它们的。我想使用数据框来查看数据。但是我不知道如何解析它,因为 CSV 包只接受文件,而不接受字符串。 一种解决
我有一个 CSV 文件,其中包含一些字段的值列表。它们作为 HTML“ul”元素存储在数据库中,但我想将它们转换为对电子表格更友好的东西。 我应该使用什么作为分隔符?我可以使用转义的逗号、竖线、分号或
我使用 Google 表格(电子表格)来合并我的 Gambio 商店的不同来源的文章数据。要导入数据,我需要在 .csv 文件中使用管道符号作为分隔符/分隔符,并使用 "作为文本分隔符。在用于导出为
这是一个奇怪的请求,因为我们都知道数据库头不应该包含空格。 但是,我正在使用的系统需要在其标题中使用空格才能导入。 我创建了一个 Report Builder 报告,它将数据构建到一个表中,并在我运行
我有一个 .csv 文件,我需要将其转换为 coldfusion 查询。我使用了 cflib.org CSVtoQuery 方法,它工作正常......但是...... 如果 csv 中的“单元格”在
我想知道是否有任何方法可以生成文化中性 CSV 文件,或者至少指定文件中存在的特定列的数据格式。 例如,我生成了包含带小数点分隔符 (.) 的数字的 CSV 文件,然后 将其传递给小数点分隔符为 (,
我正在构建一个 CSV 字符串 - 因此用户单击 div 的所有内容 - 5 个字符的字符串都会传递到隐藏字段中 - 我想做的是附加每个新值并创建一个 CSV 字符串 - 完成后- 在文本框中显示 -
我正在努力从另外两个文件创建一个 CSV 文件 这是我需要的 我想要的文件(很多其他行) “AB”;“A”;“B”;“C”;“D”;“E” 我拥有的文件: 文件 1:"A";"B";"C";"D";"
我正在尝试将表导出到配置单元中的本地 csv 文件。 INSERT OVERWRITE LOCAL DIRECTORY '/home/sofia/temp.csv' ROW FORMAT DELIMI
我是一名优秀的程序员,十分优秀!