我有一個通過POST發送XML的代碼。但是這段代碼是用PHP編寫的,我在VB.NET中需要它。 將此代碼轉換的任何幫助? $XMLFile= (here i have created the xml file. XML is encoded ISO-8859)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"URL WHERE I SEND
我想讓python忽略不能編碼的字符,只需用字符串"<could not encode>"替換即可。 E.g,假設默認編碼是ASCII,命令 '%s is the word'%'ébác'
會產生 '<could not encode>b<could not encode>c is the word'
有什麼辦法,使這個默認的行爲,在所有我的項目?