我是靠谱客的博主 爱笑洋葱,最近开发中收集的这篇文章主要介绍C# 调用C++ dll 返回char*调用方式(StringBuilder乱码),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

// CDLLDemo.cpp : 定义 DLL 应用程序的导出函数。
//
#include "stdafx.h"
#include "string.h"
#include <stdio.h>
#include <time.h>

extern "C" __declspec(dllexport)
int ParseBaliseMsg2(const unsigned char *pMsgData, char *resTgm, char *resStr)
{
    /*CString strInfo;
    strcpy(resTgm, strMsg.GetBuffer());
    strMsg = strFor1 + strMsg + strFor2;
    strInfo += "erro!!!";
    strcpy(resStr, strInfo.GetBuffer());*/
    //memset(resStr, 0, 50);
    printf("%s rn", pMsgData);
    char *a = "ParseBaliseMsg2 hello word!";
    strcpy(resStr, a);
    printf("resStr is: %s rn", resStr);

    time_t rawtime;
    struct tm * timeinfo;
    time(&rawtime);
    timeinfo = localtime(&rawtime);
    printf("The current date/time is: %s rn", asctime(timeinfo));

    return 120;
}

extern "C" __declspec(dllexport)
char * ParseBaliseMsg3(const unsigned char *pMsgData, char *resTgm, int & retInt)
{
    /*CString strInfo;
    strcpy(resTgm, strMsg.GetBuffer());
    strMsg = strFor1 + strMsg + strFor2;
    strInfo += "erro!!!";
    strcpy(resStr, strInfo.GetBuffer());*/
    //memset(resStr, 0, 50);
    printf("%s rn", pMsgData);
    char *resStr = "ParseBaliseMsg3 hello word!";
    printf("resStr is: %s rn", resStr);

    time_t rawtime;
    struct tm * timeinfo;
    time(&rawtime);
    timeinfo = localtime(&rawtime);
    printf("The current date/time is: %s rn", asctime(timeinfo));
    retInt = 130;
    return resStr;
}

extern "C" __declspec(dllexport)
int ParseBaliseMsg4(const unsigned char *pMsgData, char *resTgm, char *resStr)
{
    /*CString strInfo;
    strcpy(resTgm, strMsg.GetBuffer());
    strMsg = strFor1 + strMsg + strFor2;
    strInfo += "erro!!!";
    strcpy(resStr, strInfo.GetBuffer());*/
    //memset(resStr, 0, 50);
    printf("%s rn", pMsgData);
    char *a = "ParseBaliseMsg4 hello word!";
    strcpy(resStr, a);
    printf("resStr is: %s rn", resStr);

    time_t rawtime;
    struct tm * timeinfo;
    time(&rawtime);
    timeinfo = localtime(&rawtime);
    printf("The current date/time is: %s rn", asctime(timeinfo));

    return 140;
}

extern "C" __declspec(dllexport)
int ParseBaliseMsg5(const unsigned char *pMsgData, char *resTgm, char *resStr)
{
    /*CString strInfo;
    strcpy(resTgm, strMsg.GetBuffer());
    strMsg = strFor1 + strMsg + strFor2;
    strInfo += "erro!!!";
    strcpy(resStr, strInfo.GetBuffer());*/
    //memset(resStr, 0, 50);
    printf("%s rn", pMsgData);
    char *a = "ParseBaliseMsg5 hello word!";
    strcpy(resStr, a);
    printf("resStr is: %s rn", resStr);

    time_t rawtime;
    struct tm * timeinfo;
    time(&rawtime);
    timeinfo = localtime(&rawtime);
    printf("The current date/time is: %s rn", asctime(timeinfo));

    return 150;
}


extern "C" __declspec(dllexport)
char* strcpyTest(char* dest, char* sour)
{
    char* temp = dest;
    while ('' != *sour)
    {
        *dest = *sour;
        dest++;
        sour++;
    }
    *dest = '';
    return temp;
}


using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace DotNet_Use_C_Demo
{
    public class TestCMethodHelper
    {
        [DllImport("CDLLDemo.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Auto)]
        private static extern int ParseBaliseMsg2(string msg, string rmsg, ref byte memory);

        [DllImport("CDLLDemo.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Auto)]
        private static extern IntPtr ParseBaliseMsg3(string msg, string rmsg, ref int rInt);

        [DllImport("CDLLDemo.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Auto)]
        private static extern IntPtr ParseBaliseMsg4(string msg, string rmsg, [MarshalAs(UnmanagedType.LPStr)]StringBuilder t);

        [DllImport("CDLLDemo.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Auto)]
        private static extern IntPtr ParseBaliseMsg5([MarshalAs(UnmanagedType.LPStr)]StringBuilder msg, string rmsg, [MarshalAs(UnmanagedType.LPStr)]StringBuilder t);

        [DllImport("CDLLDemo.dll", EntryPoint = "strcpyTest", CallingConvention = CallingConvention.Cdecl/*, CallingConvention = CallingConvention.Cdecl*/)]
        public static extern IntPtr strcpyTest(ref byte destA, string sourA);

        public static void TestMethod()
        {
            Byte[] bPara = new Byte[100];    //新建字节数组
            var r2 = ParseBaliseMsg2("abcd", "", ref bPara[0]);
            string strGet = System.Text.Encoding.Default.GetString(bPara, 0, bPara.Length);    //将字节数组转换为字符串
            Console.WriteLine("返回值:" + r2);
            Console.WriteLine("传出值:" + strGet);
            Console.WriteLine("***************************************************");

            int retResult = 0;
            IntPtr pRet = ParseBaliseMsg3("1234", "", ref retResult);
            string strRet = Marshal.PtrToStringAnsi(pRet);
            Console.WriteLine("返回值:" + strRet);
            Console.WriteLine("传出值:" + retResult);
            Console.WriteLine("***************************************************");

            //StringBuilder方式
            StringBuilder sb = new StringBuilder();
            var r4 = ParseBaliseMsg4("abcd", "", sb);
            Console.WriteLine("返回值:" + r4);
            Console.WriteLine("传出值:" + sb.ToString());
            Console.WriteLine("***************************************************");

            StringBuilder sb5 = new StringBuilder();
            StringBuilder sb5E_para = new StringBuilder();
            sb5E_para.Append("abcdedf123456");
            var r5 = ParseBaliseMsg5(sb5E_para, "", sb5);
            Console.WriteLine("返回值:" + r5);
            Console.WriteLine("传出值:" + sb5.ToString());
        }

        public static void CpyTest()
        {
            string strSour = "测试调用C++ dll";

            Byte[] bPara = new Byte[100];    //新建字节数组

            IntPtr pRet = strcpyTest(ref bPara[0], strSour);
            string strGet = System.Text.Encoding.Default.GetString(bPara, 0, bPara.Length);    //将字节数组转换为字符串
            string strRet = Marshal.PtrToStringAnsi(pRet);

            Console.WriteLine("源字符串:");
            Console.WriteLine(strSour);

            Console.WriteLine("传出值:");
            Console.WriteLine(strGet);

            Console.WriteLine("返回值:");
            Console.WriteLine(strRet);
        }
    }
}

1.用StringBuilder接收Char*参数 需要定义为[MarshalAs(UnmanagedType.LPStr)]StringBuilder,否则就是乱码。

2.用ref byte memory接收Char*参数  不能使用ref IntPtr方式接收,否则返回值一直为空。

3.使用返回值Char*  直接使用IntPtr方式接收即可。

最后

以上就是爱笑洋葱为你收集整理的C# 调用C++ dll 返回char*调用方式(StringBuilder乱码)的全部内容,希望文章能够帮你解决C# 调用C++ dll 返回char*调用方式(StringBuilder乱码)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部