GDAL C#封装对中文字符转换过程中存在问题。

C++封装一个Win32 DLL,采用Unicode字符集。使用标准头文件。

https://msdn.microsoft.com/en-us/library/dd319072(VS.85).aspx

 class CodePageHelper
{
public:
CodePageHelper(void);
~CodePageHelper(void);
static wchar_t* ANSIToUnicode( const char* str );
static char* UnicodeToANSI( const wchar_t* str );
static wchar_t* UTF8ToUnicode( const char* str );
static char* UnicodeToUTF8( const wchar_t* str );
};

CodePageHelper.h

 #include "StdAfx.h"
#include "CodePageHelper.h" CodePageHelper::CodePageHelper(void)
{
} CodePageHelper::~CodePageHelper(void)
{
} // ANSI to Unicode
wchar_t* CodePageHelper:: ANSIToUnicode( const char* str )
{
int unicodeLen = ::MultiByteToWideChar( CP_ACP,
,
str,
-,
NULL,
);
wchar_t * pUnicode;
pUnicode = new wchar_t[unicodeLen+];
memset(pUnicode,,(unicodeLen+)*sizeof(wchar_t));
::MultiByteToWideChar( CP_ACP,
,
str,
-,
(LPWSTR)pUnicode,
unicodeLen );
wchar_t* rt;
rt = ( wchar_t* )pUnicode;
//delete pUnicode; return rt;
}
// Unicode to ANSI
char* CodePageHelper:: UnicodeToANSI( const wchar_t* str )
{
char* pElementText;
int iTextLen;
// wide char to multi char
iTextLen = WideCharToMultiByte( CP_ACP,
,
str,
-,
NULL,
,
NULL,
NULL );
pElementText = new char[iTextLen + ];
memset( ( void* )pElementText, , sizeof( char ) * ( iTextLen + ) );
::WideCharToMultiByte( CP_ACP,
,
str,
-,
pElementText,
iTextLen,
NULL,
NULL );
char* strText;
strText = pElementText;
//delete[] pElementText;
return strText;
}
// UTF-8 to Unicode
wchar_t* CodePageHelper::UTF8ToUnicode( const char* str )
{
int unicodeLen = ::MultiByteToWideChar( CP_UTF8,
,
str,
-,
NULL,
);
wchar_t * pUnicode;
pUnicode = new wchar_t[unicodeLen+];
memset(pUnicode,,(unicodeLen+)*sizeof(wchar_t));
::MultiByteToWideChar( CP_UTF8,
,
str,
-,
(LPWSTR)pUnicode,
unicodeLen );
wchar_t* rt;
rt = ( wchar_t* )pUnicode;
//delete pUnicode; return rt;
}
// Unicode to UTF-8 char* CodePageHelper::UnicodeToUTF8( const wchar_t* str )
{
char* pElementText;
int iTextLen;
// wide char to multi char
iTextLen = WideCharToMultiByte( CP_UTF8,
,
str,
-,
NULL,
,
NULL,
NULL );
pElementText = new char[iTextLen + ];
memset( ( void* )pElementText, , sizeof( char ) * ( iTextLen + ) );
::WideCharToMultiByte( CP_UTF8,
,
str,
-,
pElementText,
iTextLen,
NULL,
NULL );
char* strText;
strText = pElementText;
//delete[] pElementText;
return strText;
}

CodePageHelper

 #ifdef DEMIMP_EXPORTS
#define CPL_DLL __declspec(dllexport)
#else
#define CPL_DLL __declspec(dllimport)
#endif #ifndef CPL_DISABLE_STDCALL
# define CPL_STDCALL __stdcall
#endif extern "C"
{
HANDLE CPL_DLL WINAPI GetMetaData(LPWSTR filepath);
};

GDALRaster.h

 HANDLE CPL_DLL WINAPI GetMetaData(LPWSTR filepath)
{
//char* file=CodePageHelper::UnicodeToUTF8((const wchar_t*)filepath); char* file1=CodePageHelper::UnicodeToANSI((const wchar_t*)filepath);
//const wchar_t* file2=filepath;
GDALAllRegister();
CPLSetConfigOption("GDAL_FILENAME_IS_UTF8","NO");
GDALDataset *pDSrc = (GDALDataset *)GDALOpen(file1, GA_ReadOnly);
if (pDSrc == NULL)
{
return ;
}
char** metadata=pDSrc->GetMetadata("");
return metadata;
}

C# P/Invoke调用:

  [DllImport("GDALRaster.dll", EntryPoint = "GetMetaData", CharSet = CharSet.Unicode)]
private static extern IntPtr CSharp_GetMetadata([In, MarshalAs(UnmanagedType.LPWStr)]string filepath);

解析字符串:

 public static string[] GetMetaData(string filePath)
{
IntPtr cPtr = CSharp_GetMetadata(filePath);
if (cPtr == IntPtr.Zero) throw new Exception("打开失败"); IntPtr objPtr;
int count = ;
if (cPtr != IntPtr.Zero)
{
while (Marshal.ReadIntPtr(cPtr, count * IntPtr.Size) != IntPtr.Zero)
++count;
}
string[] ret = new string[count];
if (count > )
{
for (int cx = ; cx < count; cx++)
{
objPtr = System.Runtime.InteropServices.Marshal.ReadIntPtr(cPtr, cx * System.Runtime.InteropServices.Marshal.SizeOf(typeof(IntPtr)));
ret[cx] = (objPtr == IntPtr.Zero) ? null : System.Runtime.InteropServices.Marshal.PtrToStringAnsi(objPtr);
}
}
return ret;
//double[] temp = new double[xsize * ysize];
//Marshal.Copy(pData, temp, 0, xsize * ysize);
//FreeData(pData);
//return temp; }

字符集WideCharToMultiByte的更多相关文章

  1. 关于多字节、宽字节、WideCharToMultiByte和MultiByteToWideChar函数的详解

    所谓的短字符,就是用8bit来表示的字符,典型的应用是ASCII码. 而宽字符,顾名思义,就是用16bit表示的字符,典型的有UNICODE. **************************** ...

  2. Unicode字符集下CString与char *转换 (解决中文乱码等)(转)

    UniCode 下 CString 转 char* 的方法的文章有很多,但是大部分都是在互相转载,看了那么多资料,仍然没有解决乱码的问题,后来从一个论坛的一条回复里面找到了正确的方法,特此拿出来与大家 ...

  3. MULTIBYTETOWIDECHAR的与WIDECHARTOMULTIBYTE的参数详解及相互转换

    第一个就是宽字符到多字节字符转换函数,函数原型如下: int WideCharToMultiByte( UINT CodePage, DWORD dwFlags, LPCWSTR lpWideChar ...

  4. Windows字符集的统一与转换

    以前也零零散散看过一些字符编码的问题,今天看来这边博客,感觉很多东西都总结在里面,非常值得学习! 一.字符集的历史渊源 在Windows编程时经常会遇到编码转换的问题,一直以来让刚接触的人摸不着头脑. ...

  5. 函数WideCharToMultiByte() 详解

    函数原型: int WideCharToMultiByte( UINT CodePage, DWORD dwFlags, LPWSTR lpWideCharStr, int cchWideChar, ...

  6. 字符集转换: Unicode - Ansi

    字符集转换: Unicode - Ansi string UnicodeToAnsi ( const wstring& wstrSrc ) { /*!< 分配目标空间, 一个16位Uni ...

  7. MultiByteToWideChar和WideCharToMultiByte用法详解

    今天写ini文件的时候发现的问题: TCHAR temp[]; //strcpy_s(temp, request.newVersion); MultiByteToWideChar(CP_ACP, , ...

  8. 转:Unicode字符集和多字节字符集关系

    原文地址: http://my.oschina.net/alphajay/blog/5691 unicode.ucs-2.ucs-4.utf-16.utf-32.utf-8 http://stallm ...

  9. Unicode字符集下CString与char *相互转换

    经常遇到CString转换char*时只返回第一个字符.原因是因为在Unicode字符集下CString会以Unicode的形式来保存数据,强制类型转换只会返回第一个字符.所以直接转换在基于MBCS的 ...

随机推荐

  1. YII 查找View的5种方式

    别名开头,路径指定view文件@app/views/site/about.php //开头,使用 app目录下面的views//site/about.php /开头,使用当前Module中的views ...

  2. NOJ 1643 阶乘除法(YY+小技巧)

    [1643] 阶乘除法 时间限制: 5000 ms 内存限制: 65535 K 问题描述 输入两个正整数 n, m,输出 n!/m!,其中阶乘定义为 n!= 1*2*3*...*n (n>=1) ...

  3. 使用CodeDOM实现代码生成及动态编译

    参考资料: http://www.cnblogs.com/lichdr/category/12610.html http://www.cnblogs.com/whitewolf/category/25 ...

  4. MySQL 数据库设计 笔记与总结(2)逻辑设计

    [实例演示 —— 实体之间的关系] [逻辑设计的工作] ① 将需求转化为数据库的逻辑模型 ② 通过 ER 图的形式对逻辑模型进行展示 ③ 同所选用的具体的 DBMS 系统无关 [名词解释] 候选码可以 ...

  5. CentOS6.4下安装TeamViewer8

    今天测试selenium调用firefoxdriver,该驱动无法在无界面环境中运行,需要远程连接到服务器进行操作,于是有了下面安装TeamViewer的过程. 先前尝试很多次也没有运行起来TeamV ...

  6. DataSet key points

    In a typical multiple-tier implementation, the steps for creating and refreshing a DataSet, and in t ...

  7. Java 并发:Executors 和线程池

    让我们开始来从入门了解一下 Java 的并发编程. 本文主要介绍如何开始创建线程以及管理线程池,在 Java 语言中,一个最简单的线程如下代码所示: Runnable runnable = new R ...

  8. JavaScript中关于bool类型判断的一些总结。

    我从书上看到了一些关于   int类型 0 转换成boolean值得时候会把0转换成 false ,string 类型 的  "" 也会装换成false; 所以我就想,我能不能用一 ...

  9. Cocos2d-JS工程中的文件结构

    res文件夹存放资源文件 src文件夹是主要的程序代码 app.js是实现游戏场景的JavaScript文件 resource.js在src文件夹中,定义资源对应的变量 config.json保存模拟 ...

  10. Barricade---hdu5889(最短路+网络流)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5889 题意:有n个点m条边,每条边的长度相同,我们可以默认为1,构成一个无向图:现在起点为1,终点为n ...