把一个文件分成几个文件

#include <stdio.h>
#include <stdlib.h>
#include <iostream>

using namespace std;

#define BUFF_SIZE (1024*1024)

int main(int argc, char** argv)
{
    if (3 != argc) {
        printf("error, need input like: ./a.out xx.txt 5 \n");
        return 0;
    }

    FILE* pFile = NULL;
    FILE* writeFile = NULL;
    long size;
    int splitNum = atoi(argv[2]);
    int perBlock;

    char readBuff[BUFF_SIZE] = { 0 };
    char outputFileName[BUFF_SIZE] = { 0 };

    pFile = fopen(argv[1], "rb");
    if (pFile == NULL) {
        perror("Error opening file");
        return 0;
    }
    else {
        fseek(pFile, 0, SEEK_END);    ///将文件指针移动文件结尾
        size = ftell(pFile);    ///求出当前文件指针距离文件开始的字节数
        printf("Size of file: %ld bytes.\n", size);
        if (size / atoi(argv[2]) > BUFF_SIZE) {
            printf("per block limit %d bytes\n", BUFF_SIZE);
            goto Fail;
        }
    }

    perBlock = size / splitNum;
    for (int i = 0; i < splitNum; ++i) {
        fseek(pFile, i * perBlock, SEEK_SET);
        sprintf(outputFileName, "%s_%d", argv[1], i);
        writeFile = fopen(outputFileName, "ab+");
        if (writeFile == NULL) {
            printf("fopen %s fail\n", outputFileName);
            goto Fail;
        }
        fread(readBuff, sizeof(char), perBlock, pFile);
        fwrite(readBuff, sizeof(char), perBlock, writeFile);
        fclose(writeFile);
    }

Fail:
    fclose(pFile);

    return 0;
}

 

将 Excel 文件导入 MongoDB 数据库可以分成以下几个步骤: 1. 将 Excel 文件转换成 JSON 或 CSV 格式。 2. 连接 MongoDB 数据库。 3. 创建集合。 4. 将 JSON 或 CSV 数据插入到集合中。 具体步骤如下: 1. 将 Excel 文件转换成 JSON 或 CSV 格式。 可以使用 Python 的 pandas 模块将 Excel 文件转换成 CSV 或 JSON 格式。示例代码如下: ``` python import pandas as pd # 读取 Excel 文件 df = pd.read_excel('example.xlsx') # 将数据保存为 CSV 文件 df.to_csv('example.csv', index=False) # 将数据保存为 JSON 文件 df.to_json('example.json', orient='records') ``` 2. 连接 MongoDB 数据库。 可以使用 pymongo 模块连接 MongoDB 数据库。示例代码如下: ``` python import pymongo # 连接 MongoDB 数据库 client = pymongo.MongoClient('mongodb://localhost:27017/') db = client['mydatabase'] ``` 3. 创建集合。 可以使用 pymongo 模块创建集合。示例代码如下: ``` python # 创建集合 collection = db['mycollection'] ``` 4. 将 JSON 或 CSV 数据插入到集合中。 可以使用 pymongo 模块将 JSON 或 CSV 数据插入到集合中。示例代码如下: ``` python import json # 将 JSON 数据插入到集合中 with open('example.json', 'r') as f: data = json.load(f) collection.insert_many(data) # 将 CSV 数据插入到集合中 df = pd.read_csv('example.csv') data = df.to_dict('records') collection.insert_many(data) ``` 以上代码中,`insert_many()` 方法可以一次性插入多条数据。使用 `insert_one()` 方法可以插入一条数据。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值