当前位置: 首页 > news >正文

C/C++/QT/Python/MATLAB获取文件行数的示例

1. C获取文件行数

#include <stdio.h>int main() {FILE *file = fopen("path/to/your/file.txt", "r");if (file == NULL) {printf("Failed to open the file!\n");return 0;}int lineCount = 0;char ch;while ((ch = fgetc(file)) != EOF) {if (ch == '\n') {lineCount++;}}printf("Line count: %d\n", lineCount);fclose(file);return 0;
}

2. C++获取文件行数

#include <iostream>
#include <fstream>
#include <string>int main() {std::ifstream file("path/to/your/file.txt");if (!file) {std::cout << "Failed to open the file!" << std::endl;return 0;}int lineCount = 0;std::string line;while (std::getline(file, line)) {lineCount++;}std::cout << "Line count: " << lineCount << std::endl;file.close();return 0;
}

3. Qt获取文件行数

#include <QCoreApplication>
#include <QFile>
#include <QTextStream>
#include <QDebug>int main(int argc, char *argv[])
{QCoreApplication a(argc, argv);QFile file("path/to/your/file.txt");if (!file.open(QIODevice::ReadOnly | QIODevice::Text)){qDebug() << "Failed to open the file!";return a.exec();}QTextStream in(&file);int lineCount = 0;while (!in.atEnd()){QString line = in.readLine();lineCount++;}qDebug() << "Line count: " << lineCount;file.close();return a.exec();
}

4. Python获取文件行数

file_path = 'path/to/your/file.txt'try:with open(file_path, 'r') as file:line_count = sum(1 for line in file)print(f"Line count: {line_count}")
except IOError:print("Failed to open the file!")

5. MATLAB获取文件行数

  • 方法一:使用numel函数

    filename = 'your_file.txt';  % 文件名
    fileID = fopen(filename, 'r');  % 打开文件
    data = textscan(fileID, '%s', 'Delimiter', '\n');  % 按行读取数据并存储在一个单元格数组中
    fclose(fileID);  % 关闭文件numLines = numel(data{1});  % 计算行数
    disp(['文件行数为:', num2str(numLines)]);
    
  • 方法二:使用size函数

    filename = 'your_file.txt';  % 文件名
    fileID = fopen(filename, 'r');  % 打开文件
    data = textscan(fileID, '%s', 'Delimiter', '\n');  % 按行读取数据并存储在一个单元格数组中
    fclose(fileID);  % 关闭文件numLines = size(data{1}, 1);  % 计算行数
    disp(['文件行数为:', num2str(numLines)]);
    
http://www.lryc.cn/news/155876.html

相关文章:

  • mysql的binlog參數詳解
  • 【SpringSecurity】九、Base64与JWT
  • Python的io模块
  • CSS---flex布局
  • java线程和go协程
  • JAVA 时间戳
  • 层次分析法(matlab实现)
  • python selenium 自动化登录页面
  • 【Linux】高级IO --- 多路转接,select,poll,epoll
  • anaconda navigator打不开,一直在loading画面
  • 【Java基础】深入理解反射、反射的应用(工厂模式、代理模式)
  • VUE 项目 nginx部署
  • Hashtable和HashMap、ConcurrentHashMap 之间的区别
  • 包管理工具--》npm的配置及使用(二)
  • 【Linux】多线程2——线程互斥与同步/多线程应用
  • Python中的函数式编程是什么?
  • 8月《中国数据库行业分析报告》已发布,聚焦数据仓库、首发【全球数据仓库产业图谱】
  • TikTok Shop|如何成为定邀卖家?
  • C++二级题目6
  • 南方科技大学博士研究生奖助学金,深圳大学
  • QT 使用信号与槽实现界面跳转
  • Burp插件HaE与Authz用法
  • element+vue table表格全部数据和已选数据联动
  • vue 防抖与节流用法
  • IntelliJ IDEA创建Web项目并使用Web服务器----Tomcat
  • rk3399 linux 5.10 usb 2.0设备上电概率性注册失败
  • OpenHarmony 4.0 源码编译hb 问题排查记录
  • Ubuntu20 安装 带cuda的opencv遇到的问题
  • 【每日运维】U盘启动盘安装 ESXi 6.7.0 安装卡在 loading /bnxtroce.v00
  • Linux的服务器日志分析及性能调优