반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 찾다죽는줄
- lua interpreter
- 청량리역한양수자인192
- 월세
- 엑스퍼트2주년
- Lua
- 티몬삼겹살데이
- file open
- 수도권주택공급
- C++ API
- meta table
- FILE TRANSFER
- object
- #신혼부부 #결혼준비 #신혼부부희망타운신혼부부특별공급
- file write
- 프리미어 영상변환
- TCP/IP
- 국토교통부
- QT TCP
- 등록임대주택
- 프리미어 영상저장
- lua setup
- file read
- lua for windows
- 엑스퍼트생일축하해
- lua install
- C API
- #부동산전자거래 #부동산전자계약 #부동산계약 #부동산전자계약방법 #부동산전자계약하는법 #부동산계약방법 #부동산중개수수료 #부동산중개수수료아끼기 #부동산복비아끼기
- 중소규모택지
- QTcpServer
Archives
- Today
- Total
Value Creator의 IT(프로그래밍 / 전자제품)
#5 C, C++ 소스코드 티스토리 코드블럭 적용하기(예쁘게 꾸미기) 본문
반응형
1. 티스토리 글쓰기 클릭
2. 상단 메뉴바에서 ... 을 클릭
3. < > 코드블럭 클릭
4. 원하는 소스코드를 집어넣는다.
5. 아래와 같이 코드블럭이 삽입된다.
#include <QCoreApplication>
#include <QFile>
#include <QString>
#include <QDebug>
#include <QTextStream>
void write(QString filename)
{
QFile file(filename);
// Trying to open in WriteOnly and Text mode
if(!file.open(QFile::WriteOnly |
QFile::Text))
{
qDebug() << " Could not open file for writing";
return;
}
// To write text, we use operator<<(),
// which is overloaded to take
// a QTextStream on the left
// and data types (including QString) on the right
QTextStream out(&file;);
out << "QFile Tutorial";
file.flush();
file.close();
}
void read(QString filename)
{
QFile file(filename);
if(!file.open(QFile::ReadOnly |
QFile::Text))
{
qDebug() << " Could not open the file for reading";
return;
}
QTextStream in(&file;);
QString myText = in.readAll();
qDebug() << myText;
file.close();
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QString filename = "C:/Qt/MyFile.txt";
write(filename);
read(filename);
return a.exec();
}
Output:
"QFile Tutorial"
반응형
'컴퓨터 상식' 카테고리의 다른 글
파워포인트 A3 A4 용지 변경 시 꽉 찬 상태로 출력 (0) | 2019.08.21 |
---|---|
Spell 펌방지 해제 다운로드 (0) | 2019.06.28 |
PC에서 스크롤 캡쳐(픽픽 프로그램 이용) (0) | 2019.06.14 |
통신의 이해 – 이더넷 통신 (0) | 2019.05.20 |
[컴퓨터 상식] 웹문서를 엑셀로 변환 ( HTML → EXCEL) (0) | 2019.04.16 |
Comments