标签: writefile

无法在c中使用for循环写入文本文件

我在将字符串写入txt文件时遇到问题.我的线路每次都会被覆盖.我
gcc -Wall -o filename filename.c用来编译和./filename 10 Berlin cat resultat.txt执行.txt文件总是只有一行(最后一行)如何保存所有记录.

我有一个包含城市名称和一些居民的CSV文件,我需要过滤城市名称和最少的居民.

到目前为止我尝试了什么:

.....
void write_file(char *result[], int len) {
   FILE *fp = fopen("resultat.txt", "w");
   if (fp == NULL){
       perror("resultat.txt");
       exit(1);
   }
   for (int i=0; i<len; i++) {
       fprintf(fp, "%s\n", result[i]);
   }
   fclose(fp);
}

int main(int argc,char **argv) {

    int anzahl = atoi(argv[1]);
    char *string_array[100];

    char *erste_zeile;
    erste_zeile = (char *) malloc(1000 * sizeof(char));

    char staedte[MAX_LAENGE_ARR][MAX_LAENGE_STR];
    char laender[MAX_LAENGE_ARR][MAX_LAENGE_STR]; 
    int bewohner[MAX_LAENGE_ARR];

    int len = read_file("staedte.csv", staedte, laender, bewohner);
    for …
Run Code Online (Sandbox Code Playgroud)

c malloc for-loop c-strings writefile

2
推荐指数
1
解决办法
2061
查看次数

Nodejs:如何优化写入多个文件?

我在 Windows 上的 Node 环境中工作。我的代码Buffer每秒接收 30 个对象(每个约 500-900kb),我需要尽快将这些数据保存到文件系统中,而不进行任何阻止以下接收的工作Buffer(即目标是保存每个缓冲区中的数据,大约 30-45 分钟)。就其价值而言,数据是来自 Kinect 传感器的连续深度帧。

我的问题是:在 Node 中写入文件的最佳方式是什么?

这是伪代码:

let num = 0

async function writeFile(filename, data) {
  fs.writeFileSync(filename, data)
}

// This fires 30 times/sec and runs for 30-45 min
dataSender.on('gotData', function(data){

  let filename = 'file-' + num++

  // Do anything with data here to optimize write?
  writeFile(filename, data)
}
Run Code Online (Sandbox Code Playgroud)

fs.writeFileSync似乎比 快得多fs.writeFile,这就是我在上面使用它的原因。但是有没有其他方法可以对数据进行操作或写入文件以加快每次保存的速度?

optimization file-io writefile node.js kinect

2
推荐指数
1
解决办法
3244
查看次数

使用JavaScript替换txt文件中的一行

我试图使用JavaScript替换文本文件中的一行。

这个想法是:

var oldLine = 'This is the old line';
var newLine = 'This new line replaces the old line';
Run Code Online (Sandbox Code Playgroud)

现在,我想指定一个文件,找到oldLine并用替换newLine并保存。

有人可以在这里帮助我吗?

javascript writefile fs node.js appendfile

2
推荐指数
2
解决办法
1418
查看次数

使用WriteFile API将unicode CString写入文件

如何使用WriteFile Win32 API函数将CString实例的内容写入CreateFile打开的文件?

请注意不使用MFC,包含"atlstr.h"使用CString

编辑:我可以

WriteFile(handle, cstr, cstr.GetLength(), &dwWritten, NULL); 
Run Code Online (Sandbox Code Playgroud)

要么

WriteFile(handle, cstr, cstr.GetLength() * sizeof(TCHAR), &dwWritten, NULL); 
Run Code Online (Sandbox Code Playgroud)

winapi atl cstring writefile

1
推荐指数
1
解决办法
7638
查看次数

编写文件c ++的性能

我需要用c ++编写一个文件.内容是来自while循环的标记,所以现在我逐行编写它.现在我想我可以改善写入时间,保存变量中的所有内容然后写入文件.有人知道这两种方式中的哪一种更好?

每行都由此函数写入:

void writeFile(char* filename, string value){
        ofstream outFile(filename, ios::app);
        outFile << value;
        outFile.close();
}

while(/*    Something   */){
   /*   something   */
   writeFile(..);

}
Run Code Online (Sandbox Code Playgroud)

另一种方式是:

void writeNewFile(char* filename, string value){
    ofstream outFile(filename);
    outFile<<value;
    outFile.close();
}

string res = "";
while(/*    Something   */){
   /*   something   */
   res += mydata;

}
writeNewFile(filename, res);
Run Code Online (Sandbox Code Playgroud)

c++ performance writefile

1
推荐指数
1
解决办法
540
查看次数

将字节数组保存到文件节点JS

我想将bytearray保存到节点js中的文件中,对于android我正在使用下面的代码示例.任何人都可以建议我采用类似的方法吗?

File file = new File(root, System.currentTimeMillis() + ".jpg");
if (file.exists())
    file.delete();
FileOutputStream fos = null;
try {
    fos = new FileOutputStream(file);
    fos.write(bytesarray);
    fos.close();
    return file;
}
catch (FileNotFoundException e) {
    e.printStackTrace();
}
catch (IOException e) {
    e.printStackTrace();
}
Run Code Online (Sandbox Code Playgroud)

file writefile node.js

1
推荐指数
2
解决办法
1万
查看次数

如何存储JSON响应并保存到JSON文件中

我使用SwiftyJSON来读取API响应.

我想通过创建脱机的JSON文件在用户设备中本地存储JSON响应.

我的函数返回创建JSON:

 Alamofire.request(HostURL)
        .responseJSON { response in
            guard response.result.isSuccess else {
                debugPrint("getCourseDataFromCourseId: Error while fetching tags \(String(describing: response.result.error))")
                failure(response.result.error! as NSError)
                return
            }

            guard response.result.error == nil else {
                debugPrint(response.result.error!)
                return
            }

            guard let json = response.result.value else {
                debugPrint("JSON Nil")
                return
            }

            let swiftJson = JSON(json)
Run Code Online (Sandbox Code Playgroud)

file-handling writefile readfile swifty-json swift3

1
推荐指数
1
解决办法
2643
查看次数

将文件写入节点js中的特定文件夹?

想要使用 Node js 中的 writefile 将数据写入特定文件夹。

我在 stackoverflow 上看到了几个与此相关的问题,但没有一个对我有用。

例如 :

fs.writeFile('./niktoResults/result.txt', 'This is my text', function (err) {
    if (err) throw err;
    console.log('Results Received');
});
Run Code Online (Sandbox Code Playgroud)

这会引发错误“没有这样的文件或目录”

有没有其他方法可以将数据写入特定文件夹节点js???

writefile fs node.js

1
推荐指数
1
解决办法
4019
查看次数

Common Lisp 中结构的 :print-function 和 *print-readously* 之间的干扰?

我正在尝试将一个常见的 Lisp 结构以可读的方式打印到一个文件中,以便稍后可以将其读回。SBCL 似乎有一些相当复杂的内置工具,用于以可读方式打印复杂对象,这可以避免编写专门的打印对象方法。

我的结构是否有可能:print-function干扰*print-readably*

(defstruct (problem-state (:conc-name problem-state.) (:print-function print-problem-state) (:copier nil))
  "A planning state including the current propositional database."
  (name nil :type symbol)  ;last action executed
  (instantiations nil :type list)  ;from last action effect
  (happenings nil :type list)  ;a list of (object (next-index next-time next-direction)) pairs
  (time 0.0 :type real)
  (value 0.0 :type real)
  (heuristic 0.0 :type real)
  (idb (make-hash-table) :type hash-table)  ;integer hash table of propositions
  (hidb (make-hash-table) :type hash-table))  ;integer table for …
Run Code Online (Sandbox Code Playgroud)

hashtable sbcl common-lisp writefile data-structures

1
推荐指数
1
解决办法
123
查看次数

python jupyter magic %% writefile返回SyntaxError:语法无效

# [ ] The following program asks the user for a circle radius then display the area and circumference
# Modify the program so it only displays the information when executed directly
# The program should not display anything if it is imported as a module 


%%writefile main_script.py

def main(): 
    from math import pi

    def circle_area(r):
        return pi * (r ** 2)

    def circle_circumference(r):
        return  2 * pi * r

    radius = float(input("Enter radius: "))
    print("Area =", circle_area(radius))
    print("Circumference =", …
Run Code Online (Sandbox Code Playgroud)

python writefile jupyter jupyter-notebook

0
推荐指数
1
解决办法
2374
查看次数

如何在cypress中的json文件之间添加逗号

我的写入文件: cy.writeFile("cypress/fixtures/xlsxData.json", Newdata , { flag: 'a+' })

Newdata - 让 Newdata = { FirstName:F_jsonData[i][0], MiddleName:F_jsonData[i][1], LastName:F_jsonData[i][2] }

xlsxdata.json 将是:

 [ {
  "FirstName": "ABC",
  "MiddleName": "K",
  "LastName": "edf"
}{
  "FirstName": "sss",
  "MiddleName": "g",
  "LastName": "efg"
} ] 
Run Code Online (Sandbox Code Playgroud)

如何在 json 文件中的 2 个对象之间添加逗号?

javascript automation writefile cypress

-1
推荐指数
1
解决办法
85
查看次数