qt-天气通软件

2016-04-14  本文已影响157人  jeffleefree

title: qt-天气通软件
id: 293
categories:


综述

获取json

这次的数据是利用百度的api获取的,百度为开发者提供了许多api,
其中地理的api,大数据的api很好,我利用的百度为车联网提供的天气api,
在注册了信息后,就可以免费使用了。

download python

我使用python下载从网上获取的json数据,代码如下

#!/bin/env python
import types  
import urllib2  
import json  
import os
import sys
#-*-coding:utf-8 -*-
url0 = "http://api.map.baidu.com/telematics/v3/weather?location="
url1 = "&output=json&ak=ozO9AVLiHTGEltbNzUxVKPCk"
url2 = sys.argv[1]
def registerUrl():  
    try:  
        url =url0 +  url2 + url1
        data = urllib2.urlopen(url).read()  
    print data
        return data  
    print (url)
    #return url
    except Exception,e:  
        print e


f = open('./weathers','w')
f.write(registerUrl())
f.close

开始编程

我的布局

我的思考是做一个类似天气通的软件,用户输入地点信息后可以将那个地点的天气状况
反馈出来,



如上所示

qt解析json

qt有专门处理json数据的class,QjsonDocument,

QString json("{"
        "\"encoding\" : \"UTF-8\","
        "\"plug-ins\" : ["
        "\"python\","
        "\"c++\","
        "\"ruby\""
        "],"
        "\"indent\" : { \"length\" : 3, \"use_space\" : true }"
        "}");
QJsonParseError error;
QJsonDocument jsonDocument = QJsonDocument::fromJson(json.toUtf8(), &error);
if (error.error == QJsonParseError::NoError) {
    if (jsonDocument.isObject()) {
        QVariantMap result = jsonDocument.toVariant().toMap();
        qDebug() << "encoding:" << result["encoding"].toString();
        qDebug() << "plugins:";

        foreach (QVariant plugin, result["plug-ins"].toList()) {
            qDebug() << "\t-" << plugin.toString();
        }

        QVariantMap nestedMap = result["indent"].toMap();
        qDebug() << "length:" << nestedMap["length"].toInt();
        qDebug() << "use_space:" << nestedMap["use_space"].toBool();
    }
} else {
    qFatal(error.errorString().toUtf8().constData());
    exit(1);
}

对照json的数据内容,json键值就是一个map,json数组用qlist处理,json对象也是一个map,
但是里面的值需要细分处理,分为list,map。
解析花费了我许多的时间,在利用一个网站json解析,我处理完了json解析操作,
下一步。

多看帮助文档

我设计的是分三栏,上面是数据的输入,中间是天气的显示,下面是显示一些tips,关爱大家。
中间是一个QStackWidget,执行分页的效果,我是利用qt的help做出来的,所以帮助文档多多看,挺好的。

问题

我使用Qprocess来执行python代码,

    process = new QProcess;
    QString processString = "python untitled-1.py "+ linedit->text();
    process->start(processString);

我希望多执行几个脚本,结果报错了,对于如何解决这个问题,我试图使用再开一个线程的方法,但是我需要从主线程传值给
新的线程,我试过new一个对象,或者使用静态变量传值,但是都报错了,
我想这种方法传值或许有问题,但是新开一个线程是很简单的。

class WorkerThread : public QThread
{
    Q_OBJECT
    void run() Q_DECL_OVERRIDE {
        QString result;
        /* ... here is the expensive or blocking operation ... */
        emit resultReady(result);
    }
signals:
    void resultReady(const QString &s);
};

void MyObject::startWorkInAThread()
{
    WorkerThread *workerThread = new WorkerThread(this);
    connect(workerThread, &WorkerThread::resultReady, this, &MyObject::handleResults);
    connect(workerThread, &WorkerThread::finished, workerThread, &QObject::deleteLater);
    workerThread->start();
}

添加一点趣味

我使用QTimer来定时切换,

  timer = new QTimer;
  connect(timer, SIGNAL(timeout()), this, SLOT(showData()));

我设置了定时器,每隔一定的时间就可以换下一天的天气信息,

结语

整体我花了3,4天的时间来写,其中出了很多的问题,幸好我坚持了下来。
代码链接:https://github.com/youngjeff/qt/tree/master/weather

上一篇 下一篇

猜你喜欢

热点阅读