标签:
2.是关于如何加载dll或lib库的。可以看这篇bog Qt调用dll中的功能函数点击打开链接
****************************************************************************************************************************************************
声明: 事先我已经自己动手写了一个简单的dll文件(myDLL.dll),C版接口的。并且用我前两篇有关DLL文章里面的方法,从dll中导出了导入库(.lib)文件,dll中有两个函数,原型如下:
void HelloWorld(); //函数内部调用Win32 API,功能是弹出一个helloworld提示框 int add(int a,int b); //实现两个数相加,并返回结果
下面分别通过显示调用和隐式调用两种方法,来模拟Qt如何调用外部dll文件中的功能函数,follow me....
预备知识:
1、如果在没有导入库文件(.lib),而只有头文件(.h)与动态链接库(.dll)时,我们才需要显示调用,如果这三个文件都全的话,我们就可以使用简单方便的隐式调用。
2、通常Windows下程序显示调用dll的步骤分为三步(三个函数):LoadLibrary()、GetProcAdress()、FreeLibrary()
其中,LoadLibrary() 函数用来载入指定的dll文件,加载到调用程序的内存中(DLL没有自己的内存!)
GetProcAddress() 函数检索指定的动态链接库(DLL)中的输出库函数地址,以备调用
FreeLibrary() 释放dll所占空间
1、显示调用
Qt提供了一个 QLibrary 类供显示调用。下面给出一个完整的例子:
- #include <QApplication>
- #include <QLibrary>
- #include <QDebug>
- #include <QMessageBox>
- #include "dll.h" //引入头文件
- typedef int (*Fun)(int,int);
- int main(int argc,char **argv)
- {
- QApplication app(argc,argv);
- QLibrary mylib("myDLL.dll");
- int result;
- if (mylib.load())
- {
- QMessageBox::information(NULL,"OK","DLL load is OK!");
- Fun open=(Fun)mylib.resolve("add");
- if (open)
- {
- QMessageBox::information(NULL,"OK","Link to Function is OK!");
- result=open(5,6);
- qDebug()<<result;
- }
- else
- QMessageBox::information(NULL,"NO","Linke to Function is not OK!!!!");
- }
- else
- QMessageBox::information(NULL,"NO","DLL is not loaded!");
- return 0;
myDLL.dll为自定义的dll文件,将其复制到程序的输出目录下就可以调用。显然,显示调用代码书写量巨大,实在不方便。
2、隐式调用
这个时候我们需要三个文件,头文件(.h)、导入库文件(.lib)、动态链接库(.dll),具体步骤如下:
1、首先我们把 .h 与 .lib/.a 文件复制到程序当前目录下,然后再把dll文件复制到程序的输出目录,
2、下面我们在pro文件中,添加 .lib 文件的位置: LIBS+= -L D:/hitempt/api/ -l myDLL
-L 参数指定 .lib/.a 文件的位置
-l 参数指定导入库文件名(不要加扩展名)
另外,导入库文件的路径中,反斜杠用的是向右倾斜的
3、在程序中include头文件(我试验用的dll是用C写的,因此要用 extern "C" { #include "dll.h" } )
下面是隐式调用的实例代码:
- #include <QApplication>
- #include <QDebug>
- extern "C"
- {
- #include "dll.h"
- }
- int main(int argv ,char **argv)
- {
- QApplication app(argv,argv);
- HelloWordl();
- qDebug()<<add(5,6);
- return 0;
- }
************************************************************************************************************************************
本来是打算用隐身调用的,但是可能是库的原因,造成无法使用。库是别的公司提供的。so,用的第一种。在后面会贴一些我的code。
jida.h 部分 函数形成如下
- BOOL WINAPI JidaDllInstall(BOOL install);
- BOOL WINAPI JidaDllInitialize(void);
- BOOL WINAPI JidaDllUninitialize(void);
-
- DWORD WINAPI JidaBoardCountW(LPCWSTR pszClass, DWORD dwFlags);
- BOOL WINAPI JidaBoardOpenW(LPCWSTR pszClass, DWORD dwNum, DWORD dwFlags,
- BOOL WINAPI JidaBoardClose(HJIDA hJida);
-
- DWORD WINAPI JidaI2CCount(HJIDA hJida);
- DWORD WINAPI JidaI2CType(HJIDA hJida, DWORD dwType);
- BOOL WINAPI JidaI2CRead(HJIDA hJida, DWORD dwType, BYTE bAddr, LPBYTE pBytes,DWORD dwLen);
- BOOL WINAPI JidaI2CWrite(HJIDA hJida, DWORD dwType, BYTE bAddr, LPBYTE pBytes,DWORD dwLen);
在要加载的cpp文件上写上QT,因为dll是window的,里面含有定义的宏DWORD这类,so加上windows.h
- #include <windows.h>
- #include <QLibrary>
- #include "jida.h"
定义指针函数以备调用如:一个add函数。下面第一行为函数,第二行为函数指针。
下面是我的main.cpp里面的。第一行pHandle是给dll的函数里面的api接口,不同dll接口不同,请忽略,不用在意。
主要是dll的加载。QLibrary jida_lib("jida.dll");
然后引用dll里面的函数。resolve是加载dll里面的函数。括号里面的(JidaDallInstall)是Dell里面的函数名。然后直接调用jida_install即可使用dll里面的JidaDallInstall函数。jida_install是自己自定义的。
- FunJidaInstal jida_install=(FunJidaInstal)jida_lib.resolve("JidaDllInstall");
DWORD pHandle = 0; //句柄返回值
-
- typedef BOOL WINAPI (*FunJidaInstal)(BOOL install);
- typedef BOOL WINAPI (*FunJidaDllInit)(BOOL install);
- typedef BOOL WINAPI (*FunJidaDllUninit)(BOOL install);
- typedef DWORD WINAPI (*FunJidaBoardCountW)(LPCWSTR,DWORD);
- typedef BOOL WINAPI (*FunJidaBoardOpenW)(LPCWSTR,DWORD,DWORD,PHJIDA);
- typedef BOOL WINAPI (*FunJidaBoardClose)(HJIDA hJida);
- typedef DWORD WINAPI (*FunJidaI2CCount)(HJIDA);
- typedef DWORD WINAPI (*FunJidaI2CType)(HJIDA, DWORD );
- typedef BOOL WINAPI (*FunJidaI2CRead)(HJIDA, DWORD , BYTE , LPBYTE ,DWORD );
- typedef BOOL WINAPI (*FunJidaI2CWrite)(HJIDA, DWORD , BYTE , LPBYTE ,DWORD );
-
- QLibrary jida_lib("jida.dll");
- FunJidaInstal jida_install=(FunJidaInstal)jida_lib.resolve("JidaDllInstall");
- FunJidaDllInit jida_dll_init = (FunJidaDllInit)jida_lib.resolve("JidaDllInitialize");
- FunJidaDllUninit jida_dll_uninit = (FunJidaDllUninit)jida_lib.resolve("JidaDllUninitialize");
- FunJidaBoardCountW jida_board_countw = (FunJidaBoardCountW)jida_lib.resolve("JidaBoardCountW");
- FunJidaBoardOpenW jida_board_openw = (FunJidaBoardOpenW)jida_lib.resolve("JidaBoardOpenW");
- FunJidaBoardClose jida_board_close = (FunJidaBoardClose)jida_lib.resolve("JidaBoardClose");
- FunJidaI2CCount jida_i2c_count = (FunJidaI2CCount)jida_lib.resolve("JidaI2CCount");
- FunJidaI2CType jida_i2c_type = (FunJidaI2CType)jida_lib.resolve("JidaI2CType");
- FunJidaI2CRead jida_i2c_read = (FunJidaI2CRead)jida_lib.resolve("JidaI2CRead");
- FunJidaI2CWrite jida_i2c_write = (FunJidaI2CWrite)jida_lib.resolve("JidaI2CWrite");
进行下简单的判断,dll是否加载成功。.load是加载dll。jida_install是我调用dll里面的dll初始化程序。
等于是调用dll里面的函数,再次看是否加载ok。
- if (jida_lib.load())
- {
- cout << "qt lib load ok" << endl;
- }
- else
- {
- cout << "qt lib load error" << endl;
- }
-
- if(jida_install)
- {
- cout << "dell load ok" <<endl;
- }
- else
- {
- cout << "dell load error" <<endl;
- }
3.QT中char * 转换为 wchar_t * (LPTSTR)类型
醉了,windows下宏定义了很多char类型 LPTSTR 。今天,直接使用,qt报错,真TM费事。
将“CPU”转化为wcha_t *
- QString str = "CPU";
- const wchar_t * str_cpu = reinterpret_cast<const wchar_t *>(str.utf16());
下面这篇blog很好
QT QString, wchar_t *, TCHAR, CString和其他字符或字符串类型的转化
点击打开链接
- const wchar_t * encodedName = reinterpret_cast<const wchar_t *>(fileName.utf16());
-
- QByteArray fileName = QFile::encodeName(aFileName);
- const char * encodedName = fileName.constData();
-
- const char * tmp = str.toUtf8().constData();
- [/code]
- Windows 数据类型: http:
- [code lang="cpp"]
- #ifdef UNICODE
- typedef wchar_t TCHAR;
- #else
- typedef char TCHAR;
- #endif
-
- #ifdef UNICODE
- typedef LPCWSTR LPCTSTR;
- #else
- typedef LPCSTR LPCTSTR;
- #endif
-
- typedef const char * LPCSTR;
-
- typedef const wchar_t * LPCWSTR;
-
- QString text(QString::fromUtf16(reinterpret_cast<const unsigned short *>(tmp)));
- 另一种解决办法是使用QString::fromWCharArray(),但这个函数可能导致一些尚未解决的wchar_t符号问题。
-
- 最佳的编程风格: 使用L来定义wchar_t宽字符串,比如 L"text" 字义了一个UNICODE字符串"text"。
-
- 今天又看到一个文章,关于字符串之间的转换,比较全面,在此将英文翻译并整理一下。
- 原文地址:http:
-
- QString与其他字符类型之间的转换,QString在Qt4中是UNICODE编码的,使用utf16规范。
-
- QString::fromAscii ( const char * str, int size = -1 );
- QString::fromLatin1 ( const char * str, int size = -1 );
- QString::fromLocal8Bit ( const char * str, int size = -1 );
- QString::fromRawData ( const QChar * unicode, int size );
- QString::fromStdString ( const std::string & str );
- QString::fromStdWString ( const std::wstring & str );
- QString::fromUcs4 ( const uint * unicode, int size = -1 );
- QString::fromUtf8 ( const char * str, int size = -1 );
- QString::fromUtf16 ( const ushort * unicode, int size = -1 );
- QString::fromWCharArray ( const wchar_t * string, int size = -1 );
-
- QString::toStdString () ;
- QString::toStdWString ();
-
- BSTR bstr_str;
- QString q_str((QChar*)bstr_str, wcslen(bstr_str));
- bstr_str = SysAllocString(q_str.utf16());
-
- QString::toLocal8Bit().constData();
- QString::fromLocal8Bit ( const char * str, int size = -1 );
-
- QString::utf16();
- QString::fromUtf16 ( const ushort * unicode, int size = -1 );
-
- CString c_str(qstring::utf16());
- QString fromUtf16 (LPCTSTR(c_str) );
- CString转换为char*
-
- CString cstr(asdd);
- const char* ch = (LPCTSTR)cstr;
-
- CString cstr = "ASDDSD";
- char *ch = cstr.GetBuffer(cstr1.GetLength() + 1);
- cstr.ReleaseBuffer();
-
- CString cstr1 = "ASDDSD";
- int strLength = cstr1.GetLength() + 1;
- char *pValue = new char[strLength];
- strncpy(pValue, cstr1, strLength);
-
- CString cstr2 = "ASDDSD";
- int strLength1 = cstr1.GetLength() + 1;
- char chArray[100];
- memset(chArray,0, sizeof(bool) * 100);
- strncpy(chArray, cstr1, strLength1);
-
- CString origCString("Hello, World!");
- wchar_t* wCharString = origCString.GetBuffer(origCString.GetLength()+1);
- size_t origsize = wcslen(wCharString) + 1;
- size_t convertedChars = 0;
- char *CharString;
- CharString=new char(origsize);
- wcstombs_s(&convertedChars, CharString, origsize, wCharString , _TRUNCATE);
- cout << CharString << endl;
- 从UTF8编码到GB编码的字符串转换方法:
-
- QString Utf8_To_GB(QString strText)
- {
- return QString::fromUtf8(strText.toLocal8Bit().data());
- }
- 从GB编码到UTF8编码的字符串转换方法:
-
- QString GB_To_Utf8(char *strText)
- {
- return QString::fromLocal8Bit(strText);
- }
http://blog.csdn.net/linbounconstraint/article/details/47321103
加载dll、lib库
标签:
原文地址:http://www.cnblogs.com/findumars/p/5837665.html