本文介绍了[c ++]从网站文件中读取的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Example :
<b>Read from website :</b> http://www.website.com/file.txt
This file will read each line individually.
and write.
Example : line = 9
int line = this file lines (9);
for (int i=0; i<=line;i++)
{
cout << file[i] << "\n" << endl;
}
system("PAUSE");
我的尝试:
如何在网站上读取此文件?
What I have tried:
How do I read this file on the Web site?
推荐答案
这篇关于[c ++]从网站文件中读取的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!