- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个字符串流,其中包含多行文本。
例如,
f.html Sat Oct 19 22:59:47 2013 23675
folder Mon Nov 4 19:36:14 2013 4096
readdirpractice.cpp Tue Nov 5 03:00:10 2013 1203
server.cpp Mon Nov 4 21:22:27 2013 11369
photo.jpg Wed Oct 23 01:45:04 2013 4360
qq Sun Nov 3 01:54:36 2013 66031
server.cpp~ Mon Nov 4 21:22:25 2013 11368
myhttp.cpp Sun Nov 3 01:43:09 2013 1816
getoptpractice.cpp~ Sun Nov 3 01:15:25 2013 1324
这是字符串流通常的样子。
当我把这个stringstream转成string时,信息是一样的。
但是,当我将其转换为 C 字符串时,它只占用第一行,其他所有行都丢失了。
只有
f.html Sat Oct 19 22:59:47 2013 23675
转换后。
这是为什么,我该如何解决?
我附上了我的部分代码。
if(is_dir) {
char dirname[1024];
strncpy(dirname, requests[1].c_str(), sizeof(dirname));
dirname[sizeof(dirname)-1] = 0;
DIR *d;
struct dirent *dir;
d = opendir(dirname);
stringstream ss;
if (d) {
while ((dir = readdir(d)) != NULL) {
char* file = dir->d_name;
if(file[0] != '.') {
struct stat sb;
if (stat(file, &sb) == -1) {
cerr << "stat error" << endl;
exit(EXIT_FAILURE);
}
char* lm = ctime(&sb.st_mtime);
string lastmod(lm);
lastmod.at(lastmod.size()-1) = '\0';
string spacing = " ";
ss << file << spacing.substr(0, spacing.size() - strlen(file)) << lastmod << spacing.substr(0, spacing.size() - lastmod.size()) << sb.st_size << '\n';
}
}
closedir(d);
}
//cout << ss.str() << endl; // for testing
char msg2[10000];
strncpy(msg2, ss.str().c_str(), sizeof(msg2));
msg2[sizeof(msg2)-1] = 0;
msg = msg2;
最佳答案
std::string
可能嵌入了 '\0'
(NUL) 字符,这些字符在解释时过早地终止了 char
序列作为 C 字符串。
尝试使用 std::remove
删除 NUL 字节.
编辑 - 这可能是您的问题:
lastmod.at(lastmod.size()-1) = '\0';
这是自找麻烦。 std::string
忠实地存储您的 NUL 字节并将其复制到输出中。
关于c++ - c_str() ing 字符串 - 除了第一行之外的所有其他行都将丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19784870/
我正在尝试比较 libpqxx c_str值(value)观。 如果我尝试直接比较它们,result1[0][0].c_str() == result2[0][0].c_str(),例如,它们不会 r
const char *c_str(); c_str()函数返回一个指向正规C字符串的指针, 内容与本string串相同. c_str()就是把string类对象转换成和c兼容的char *类型。
这个问题在这里已经有了答案: C++ strange behavior with string's c_str() function (2 个答案) 关闭 8 年前。 我得到了以下程序: std::
我想创建一个进程来读取一些串口。但是,用户将来应该能够更改程序所在的路径。这就是为什么我想包含变量 BasePathFile,它在类的初始化过程中设置为默认值: const std::string B
我的 C++ 标准草案拷贝(标记为“ISO/IEC JTC1 SC22 WG21 N3690Date: 2013-05-15") 对 basic_string::c_str() 和 basic_str
我知道 C++11 对 string 做了很多改变。其中最重要的是要求它在内存中线性布局。 在 C++11 之前,对 string::c_str 的调用将返回一个 const char*,但是否保证是
const char* getOutPath() { return classVarStr.c_str(); } 我有之前的功能, 当我收到返回值时有一些奇怪的东西, 我得到完整路径但不包括第一个
这个问题在这里已经有了答案: assigning string::c_str() to a const char* when the string goes out of scope (5 个答案)
如果使用 g++ 和 clang++,我得到 ++my string==my string##my string--。而MSVC和Intel Compiler,则是++==my string##my
我正在做一个 C++ 作业,需要用户输入一个表达式(例如:2 * (6-1) + 2 )并输出结果。除非在用户输入中遇到空格,否则一切正常。 需要将用户输入传递给以下方法; double Calcul
这个问题在这里已经有了答案: Why don't the std::fstream classes take a std::string? (10 个答案) 关闭 8 年前。 我正在阅读《C++ P
这是我在网上找到的一个小型图书馆: const char* GetHandStateBrief(const PostFlopState* state) { static std::ostrin
这个代码片段是正确的还是会导致未定义的行为? std::string s; assert(strlen(s.c_str())==0); 如果不是undefined behavior,上面的断言会通过吗
我已经用普通的 ifstreams 和我正在使用的当前 boost:iostream 尝试了以下代码,两者都有相同的结果。 它旨在将文件从 physfs 加载到内存中,然后将其传递给处理程序进行处理(
我有下面的代码片段。我期待输出将是 mystring,但奇怪的是它输出垃圾字符。 #include #include using namespace std; int main(int argc,
考虑以下函数: void f(const char* str); 假设我想使用 stringstream 生成一个字符串并将其传递给这个函数。如果我想在一个语句中做到这一点,我可能会尝试: f((st
我的理解是 c_str 将一个可能会或可能不会以 null 结尾的字符串转换为以 null 结尾的字符串。 这是真的吗?可以举一些例子吗? 最佳答案 c_str 返回一个 const char*,它指
有时我需要从 C 调用 C++ 对象。经过一些搜索,我知道我可以使用 extern "C" 来包装一些可以从 C 调用的接口(interface)。这是我的代码: #include #include
所以我有一个类 class MySuperClass { public: std::string buffer; }; 并希望将buffer打印到std::cout。 以下是有关从文件填充字符串的一
我从this answer知道字符串文字是静态分配的。但是下面的字符串连接也可以安全使用吗? void someFunction(std::string& foo) { functionTak
我是一名优秀的程序员,十分优秀!