vs2010中 c++ 怎么读写Txt文件括号中的内容

vs2010中 c++ 怎么读写Txt文件括号中的内容,第1张

无论读写都要包含<fstream>头文件

读:从外部文件中将数据读到程序中来处理

对于程序来说,是从外部读入数据,因此定义输入流,即定义输入流对象:ifsteam infile,infile就是输入流对象。

这个对象当中存放即将从文件读入的数据流。假设有名字为myfile.txt的文件,存有两行数字数据,具体方法:

int a,b

ifstream infile

infile.open("myfile.txt") //注意文件的路径

infile>>a>>b //两行数据可以连续读出到变量里

infile.close()

如果是个很大的多行存储的文本型文件可以这么读:

char buf[1024] //临时保存读取出来的文件内容

string message

ifstream infile

infile.open("myfile.js")

if(infile.is_open()) //文件打开成功,说明曾经写入过东西

{

while(infile.good() &&!infile.eof())

{

memset(buf,0,1024)

infile.getline(buf,1204)

message = buf

...... //这里可能对message做一些 *** 作

cout<<message<<endl

}

infile.close()

}

写:将程序中处理后的数据写到文件当中

对程序来说是将数据写出去,即数据离开程序,因此定义输出流对象ofstream outfile,outfile就是输出流对象,这个对象用来存放将要写到文件当中的数据。具体做法:

ofstream outfile

outfile.open("myfile.bat")//myfile.bat是存放数据的文件名

if(outfile.is_open())

{

outfile<<message<<endl //message是程序中处理的数据

outfile.close()

}

else

{

cout<<"不能打开文件!"<<endl

}

小例子:

#include <iostream>

#include <iomanip>

#include <fstream>

using namespace std

int main(){

char buffer[256]

ifstream myfile ("c:\\a.txt")

ofstream outfile("c:\\b.txt")

if(!myfile){

cout <<"Unable to open myfile"

exit(1)// terminate with error

}

if(!outfile){

cout <<"Unable to open otfile"

exit(1)// terminate with error

}

int a,b

int i=0,j=0

int data[6][2]

while (! myfile.eof() )

{

myfile.getline (buffer,10)

sscanf(buffer,"%d %d",&a,&b)

cout<<a<<" "<<b<<endl

data[i][0]=a

data[i][1]=b

i++

}

myfile.close()

for(int k=0k<ik++){

outfile<<data[k][0] <<" "<<data[k][1]<<endl

cout<<data[k][0] <<" "<<data[k][1]<<endl

}

outfile.close()

return 0

}

比如你的项目名称是myProcject,项目目录是myProject,那么你再vs2010下执行你写的程序,则读写文件默认路径是myProject\myProject,如果你双击编译好的exe文件,则默认路径是与exe位置相同的目录。

你可以使用

Private Sub Form_Load()

    Dim a As Object

    Dim b As Object

    Dim c As Object

    Set a = GetObject(, "Excel.Application")

    Set b = a.WorkBooks.open(Path & "\工作簿1.xlsx")

    a.Visible = False

    Set c = b.worksheets(1)

    

    

End Sub

要引用:microsoft activex data objects 2.5 library

Private Sub Form_Load()

    Dim cnn As ADODB.Connection

    Set cnn = New ADODB.Connection

    cnn.Open "Provider=MSDASQL.1Persist Security Info=FalseExtended Properties=""DSN=Excel FilesDBQ=" & App.Path & "\Book1.xlsxDriverId=1046FIL=excel 8.0"""

    Dim rs As ADODB.Recordset

    Set rs = New ADODB.Recordset

    rs.Open "select * from [sheet1$]", cnn

    Set Me.MSHFlexGrid1.DataSource = rs

End Sub


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11718175.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存