当前项目可能用到的网址

实现类似迅雷的效果

http://www.qtcn.org/bbs/read-htm-tid-53546.html

天气

http://www.qtcn.org/bbs/read-htm-tid-53691.html

简易的测试:

	QFile file("d:/weather.txt");
	if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
		return -1;
	QByteArray ba = file.readAll();
	QJsonParseError jsonpe;

	QJsonDocument json = QJsonDocument::fromJson(ba, &jsonpe);

	if (jsonpe.error == QJsonParseError::NoError)
	{
		bool bIsArray = json.isArray();
		if (json.isObject())
		{

			QJsonObject obj = json.object();
			qDebug() << obj.size();
			if (obj.contains("weatherinfo"))
			{
				//qDebug() << "weatherinfo:" << obj["weatherinfo"];
				QJsonObject weather = obj.value("weatherinfo").toObject();
				qDebug() << weather.value("city").toString();
				qDebug() << weather.value("date_y").toString();
				qDebug() << weather.value("temp1").toString();
			}
			if(obj.contains("city"))
			{
				qDebug() << "city";
			}
		}
	}

感谢hello_haozihttp://www.qtcn.org/bbs/read-htm-tid-53691.html

Qt4 ccsstyle

http://qt-project.org/doc/qt-4.8/stylesheet-examples.html

FLTK(跨平台轻量级GUI)

http://www.cppblog.com/cyantree/archive/2012/05/13/174761.aspx#who

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值