第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

C.串() 僅返回第一個(gè)字符

C.串() 僅返回第一個(gè)字符

Go
滄海一幻覺 2022-10-04 18:52:04
我正在嘗試使用c共享(.so)文件從Python調(diào)用Go函數(shù)。在我的python代碼中,我調(diào)用的函數(shù)如下所示:website = "https://draftss.com"domain = "draftss.com"website_ip = "23.xxx.xxx.xxx"website_tech_finder_lib = cdll.LoadLibrary("website_tech_finder/builds/websiteTechFinder.so")result_json_string: str = website_tech_finder_lib.FetchAllData(website, domain, website_ip)在Go端,我正在根據(jù)這篇SO帖子將字符串轉(zhuǎn)換為Go字符串(從共享庫(kù)訪問函數(shù)時(shí)內(nèi)存不足):func FetchAllData(w *C.char, d *C.char, dIP *C.char) *C.char {    var website string = C.GoString(w)    var domain string = C.GoString(d)    var domainIP string = C.GoString(dIP)    fmt.Println(website)    fmt.Println(domain)    fmt.Println(domainIP)        .... // Rest of the code}網(wǎng)站域和 domainIP 只有我傳遞的字符串的第一個(gè)字符:fmt.Println(website)  // -> hfmt.Println(domain)   // -> dfmt.Println(domainIP) // -> 2我對(duì)Go有點(diǎn)陌生,所以我不確定我是否在這里做了一些愚蠢的事情。如何獲取我傳遞的完整字符串?
查看完整描述

1 回答

?
元芳怎么了

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個(gè)贊

您需要將參數(shù)轉(zhuǎn)換為 UTF8 字節(jié)。


website = "https://draftss.com".encode('utf-8')

domain = "draftss.com".encode('utf-8')

website_ip = "23.xxx.xxx.xxx".encode('utf-8')


lib = cdll.LoadLibrary("website_tech_finder/builds/websiteTechFinder.so")

result_json_string: str = website_tech_finder_lib.FetchAllData(website, domain, website_ip)


查看完整回答
反對(duì) 回復(fù) 2022-10-04
  • 1 回答
  • 0 關(guān)注
  • 122 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)