Qt模拟C#的File类对文件进行操作
其实只是QT菜鸟为了练习而搞出来的
文件头:
#include <QFile>
#include <QString>
#include <iostream>
#include <QTextCodec>
#include <QTextStream> enum Encoding
{
ASCII = ,
Unicode = ,
UTF32 = ,
UTF7 = ,
UTF8 = ,
GBK =
}; class File
{
public:
File(); static void Create(QString path); //创建文件,如果文件存在则覆盖
static bool Exist(QString path); //判断文件是否存在
static void AppendAllText(QString path, QString content, Encoding encode); //向现有文件内追加数据
static void AppendAllText(QString path, QString content); //向现有文件内追加数据
static void AppendAllLines(QString path,QStringList lines, Encoding encode); //向现有文件内追加多行数据
static void AppendAllLines(QString path,QStringList lines); //向现有文件内追加多行数据
static void WriteAllText(QString path,QString content,Encoding encode); //创建新文件并写入文件,如果有文件则覆盖
static void WriteAllText(QString path,QString content); //创建新文件并写入文件,如果有文件则覆盖
static void WriteAllLines(QString path,QStringList content,Encoding encode); //创建新文件并写入多行数据,如果文件存在则覆盖
static void WriteAllLines(QString path,QStringList content); //创建新文件并写入多行数据,如果文件存在则覆盖
static QString ReadAllText(QString path,Encoding encode); //读取文件
static QString ReadAllText(QString path); //读取文件
static QStringList ReadAllLines(QString path,Encoding encode); //读取文件内所有的行
static QStringList ReadAllLines(QString path); //读取文件内所有的行
static void Copy(QString sourceFileName,QString destFileName,bool overwrite); //拷贝文件
static void Copy(QString sourceFileName,QString destFileName); //拷贝文件
static void Move(QString sourceFileName,QString destFileName); //移动文件
static void Delete(QString path); //删除文件
static void Rename(QString path,QString name); //重命名 private:
static QTextCodec* GetCode(Encoding code); };
源文件:
File::File()
{
} bool File::Exist (QString path)
{
QFile file(path);
return file.exists ();
} QTextCodec* File::GetCode (Encoding code)
{
QTextCodec* c;
switch(code)
{
case Encoding():
c = QTextCodec::codecForName ("ASCII");
break;
case Encoding():
c = QTextCodec::codecForName ("Unicode");
break;
case Encoding():
c = QTextCodec::codecForName ("UTF-32");
break;
case Encoding():
c = QTextCodec::codecForName ("UTF-7");
break;
case Encoding():
c = QTextCodec::codecForName ("UTF-8");
break;
case Encoding():
c = QTextCodec::codecForName ("GBK");
break;
}
return c;
} void File::Create (QString path)
{
Delete(path);
QFile file(path);
file.open (QIODevice::WriteOnly);
file.close ();
} QString File::ReadAllText (QString path, Encoding encode)
{
QString text;
if(Exist (path))
{
QFile file(path);
QTextStream stream(&file);
stream.setCodec (GetCode(encode));
stream.seek ();
text = stream.readAll ();
}
return text;
} QString File::ReadAllText (QString path)
{
return ReadAllText(path,Encoding());
} QStringList File::ReadAllLines (QString path, Encoding encode)
{
QStringList ts;
if(Exist (path))
{
QFile file(path);
QTextStream stream(&file);
stream.setCodec (GetCode(encode));
stream.seek ();
int index = ;
while(!stream.atEnd ())
{
QString t = stream.readLine (index);
ts.append (t);
index++;
}
}
return ts;
} QStringList File::ReadAllLines (QString path)
{
return ReadAllLines(path,Encoding());
} void File::WriteAllText (QString path, QString content, Encoding encode)
{
Delete(path);
Create(path);
QFile file(path);
QTextStream stream(&file);
stream.seek ();
stream.setCodec (GetCode (encode));
stream << content;
file.close ();
} void File::WriteAllText (QString path, QString content)
{
WriteAllText(path,content,Encoding());
} void File::WriteAllLines (QString path, QStringList content, Encoding encode)
{
Delete(path);
Create(path);
QFile file(path);
QTextStream stream(&file);
stream.seek ();
stream.setCodec (GetCode (encode));
for ( QStringList::Iterator it = content.begin(); it != content.end(); ++it )
stream << *it << "\r\n";
file.close ();
} void File::WriteAllLines (QString path, QStringList content)
{
WriteAllLines(path,content,Encoding());
} void File::AppendAllText (QString path, QString content, Encoding encode)
{
if(!Exist (path))Create(path);
QString text = ReadAllText(path, encode);
text += content;
WriteAllText(path,text,encode);
} void File::AppendAllText (QString path, QString content)
{
AppendAllText(path,content,Encoding());
} void File::AppendAllLines (QString path, QStringList lines, Encoding encode)
{
if(!Exist (path))Create(path);
QString text = ReadAllText(path, encode);
text += "\r\n";
foreach(QString s,lines)
text += (s + "\r\n");
WriteAllText(path,text,encode);
} void File::Copy (QString sourceFileName, QString destFileName, bool overwrite)
{
if(Exist (destFileName) && overwrite)
{
QFile file(destFileName);
file.remove ();
}
if(!Exist (destFileName))
{
QFile::copy (sourceFileName,destFileName);
}
} void File::Copy (QString sourceFileName, QString destFileName)
{
Copy(sourceFileName,destFileName,false);
} void File::Delete (QString path)
{
QFile file(path);
if(file.exists ())
{
file.remove ();
}
} void File::Rename (QString path, QString name)
{
if(Exist(path))
{
QFile file(path);
QString oldName = file.fileName ();
QFile::rename (oldName,name);
}
}
花了不少时间搞定了,不过并没有做测试,有没有问题我也不知道……
Qt模拟C#的File类对文件进行操作的更多相关文章
- 九:File类,文件的操作
File的常用方法:
- c# 命令行下编译c#文件 // c# file类读写文件
c# 命令行下编译c#文件 2010-03-01 15:02:14| 分类: c# 学习|字号 订阅 在 开始 ——>程序 ——>vstool中打开vs2008命令提示. 通过 ...
- 【转载】 C#通过File类实现文件拷贝复制的功能
在Windows系统的使用过程中,一个较常使用的功能就是文件的复制拷贝操作,其实在C#开发中,也可以使用File类库中的Copy方法来实现文件的拷贝,支持设定原文件地址,以及拷贝复制后的文件存放路径. ...
- Java 之 File类(文件操作)
一.概述 java.io.File 类是文件和目录路径名册抽象表示,主要用于文件和目录的创建.查找和删除等操作. File类是一个与系统无关的类,任何的操作系统都可以使用这个类中的方法. 路径问题: ...
- C#File类常用文件操作以及一个模拟的控制台文件管理系统
重温一下C#中File类的一些基本操作: File类,是一个静态类,主要是来提供一些函数库用的. 使用时需要引入System.IO命名空间. 一.常用操作: 1.创建文件方法 //参数1:要创建的文件 ...
- C#中File类的文件操作方法详解
File类,是一个静态类,主要是来提供一些函数库用的.静态实用类,提供了很多静态的方法,支持对文件的基本操作,包括创建,拷贝,移动,删除和打开一个文件.File类方法的参量很多时候都是路径path.F ...
- Java File类与文件IO流总结
1.File类 File类被定义为“文件和目录路径名的抽象表示形式”,这是因为File类既可以表示“文件”也可以表示“目录”,他们都通过对应的路径来描述.通过构造函数创建一个File类对象,则该对象就 ...
- File类、文件过滤器、递归、文件及文件夹的操作方法
一.File Io概述: 当需要把内存中的数据存储到持久化设备上这个动作称为输出(写)Output操作. 当把持久设备上的数据读取到内存中的这个动作称为输入(读)Input操作. 因此我们把这种输入和 ...
- 01.使用File类读写文件
使用File类去读数据: 方法一:使用ReadAllBytes(); 方法 namespace _01.使用File类读写数据01 { class Program { static void Main ...
随机推荐
- ubuntu下tomcat启动巨慢分析
在一个ubuntu14新环境部署tomcat,通过CI启动一个应用时,启动耗时达到15分钟之久.仔细看tomcat输出的耗时统计日志发现如下日志: Creation of SecureRandom i ...
- Hadoop家族学习路线图--转载
原文地址:http://blog.fens.me/hadoop-family-roadmap/ Sep 6, 2013 Tags: Hadoophadoop familyroadmap Comment ...
- laravel controller:make
php artisan make:controller DIR/XXXController
- Linux下的lds链接脚本简介
转载:http://hubingforever.blog.163.com/blog/static/171040579201192472552886/ 一. 概论 每一个链接过程都由链接脚本(lin ...
- 小白日记5:kali渗透测试之被动信息收集(四)--theHarvester,metagoofil,meltag,个人专属密码字典--CUPP
1.theHarvester theHarvester是一个社会工程学工具,它通过搜索引擎.PGP服务器以及SHODAN数据库收集用户的email,子域名,主机,雇员名,开放端口和banner信息. ...
- JavaScript 之 页面跳转及Frame动态加载
一.页面跳转 JS跳转大概有以下五种方式: 1.跳转到B页面 <script language="javascript" type="text/javascript ...
- SSIS 学习(7):包配置(下)【转】
经过前面几个章节的学习,我们开发的ETL包算已经完成一大半了,但是还不够完美,正如一场足球比赛,前面大家打得很辛苦,传接得也很漂亮,但 是临门一脚的技术不过关,进不了球,一切都是白搭.今天我们就来为大 ...
- iOS之原生地图与高德地图
原生地图 1.什么是LBS LBS: 基于位置的服务 Location Based Service 实际应用:大众点评,陌陌,微信,美团等需要用到地图或定位的App 2.定位方式 1.GPS定位 2. ...
- android-partition分析
转载请注明来源:cuixiaolei的技术博客 这里讲下android的分区.具体的使用在另一片文章中介绍,这里只是把它拿出来介绍. android的存储分为两种 一种叫做RAM,如emmc标准的dd ...
- CentOS(三)--初识linux的文件系统以及用户组等概念
进入到了Linux学习之CentOS第三篇了,这篇文章主要记录下对linux文件系统的初步认识,以及用户组.用户权限.文件所有者.文件所在组等概念 一.Linux文件结构及基本文件夹 文件系统是Lin ...