LoadRunner中文出現亂碼的解決辦法
錄製選項,高階,支援字符集,UTF-8。
一般情況下不需要開啟此選項,否則在Submit裡會出現有亂碼。
如果未開啟此功能還出現亂碼,可嘗試開啟此選項。
如果開啟此選項還是有亂碼,且亂碼處的內容你需要進行引數化,可使用lr_convert_string_encoding函式將字元轉化為你需要的模式。
函式原型:
int
lr_convert_string_encoding (
const
char
*
sourceString
,
const
char
*
fromEncoding
,
const
char
*
toEncoding
,
const
char
*
paramName);
sourceString |
The string to convert |
fromEncoding |
The encoding of the sourceString |
toEncoding |
The encoding to convert of the string saved in parameter
paramName |
paramName |
The name of the parameter in which the destination string will be saved |
Constant Value
LR_ENC_SYSTEM_LOCALE |
NULL |
LR_ENC_UTF8 |
"utf-8" |
LR_ENC_UNICODE |
"ucs-2" |
瀏覽器也有轉碼功能:選單“檢視”-->編碼-->Unicode(UTF-8)
為什麼要啟用UTF-8,某些請求中會出現:
web_custom_request(
"CALL-H001I"
,
"EncType=text/xml; charset=UTF-8" ,
……);
"EncType=text/xml; charset=UTF-8" ,
……);
這時候,此函式你就派得上用場了!
lr_convert_string_encoding函式的使用,直接檢視幫助即可。
說明:
1. 在樹檢視裡的原始碼(server Response)的亂碼是沒法解決的;
2. 在樹檢視的頁面顯示可以是正常,原始碼檢視也可以顯示正常;
3. 雖然在server Response顯示亂碼,但查詢中文字串還是正常的
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69942496/viewspace-2654689/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ubuntu中文顯示亂碼解決辦法Ubuntu
- Excel開啟csv檔案出現亂碼的解決辦法Excel
- 用CMD執行時Java,出現亂碼的解決辦法Java
- Zabbix圖表顯示中文亂碼解決辦法
- Redis中文顯示為Unicode編碼 亂碼的解決辦法RedisUnicode
- 常見php與mysql中文亂碼問題解決辦法PHPMySql
- (衝突)關於python中的requests模組中,呼叫text方法出現中文亂碼的解決辦法Python
- php json提交亂碼的解決辦法PHPJSON
- MYSQL資料庫匯入資料時出現亂碼的解決辦法MySql資料庫
- vscode中文亂碼怎麼解決 vscode輸出亂碼怎麼解決VSCode
- flashfxp 亂碼,2種辦法解決flashfxp 亂碼問題
- idea中文註釋出現亂碼,我靠自己解決了Idea
- MySQL解決中文亂碼MySql
- 【Salesforce問題解決】Dataloader匯出的檔案亂碼或者問號的解決辦法Salesforce
- MySql中表單輸入資料出現中文亂碼的解決方法MySql
- 解決 Jmeter Dashboard Report HTML 測試報告中文亂碼 至簡辦法JMeterHTML測試報告
- 管理工具匯入CSV檔案,中文資料亂碼的解決辦法。
- IDEA控制檯輸出中文亂碼解決方法Idea
- 解決Java中Swing的JFrame的setTitle方法輸入中文圖形介面亂碼辦法Java
- html之間傳值,如果有中文會出現亂碼處理辦法HTML
- 解決中文亂碼問題
- ROS中解決中文亂碼ROS
- request/response解決中文亂碼
- Excel開啟CSV檔案出現亂碼怎麼辦?Excel開啟csv檔案出現亂碼的解決方法Excel
- git出現Permission denied的解決辦法Git
- 使用Kettle抽取資料時,出現中文亂碼問題解決方案
- C# 解決httplistener querystring 中文亂碼、返回json中文格式亂碼C#HTTPJSON
- Python專案,VS Code控制檯輸出亂碼問題解決辦法Python
- Spring MVC 中文編碼亂碼解決SpringMVC
- 偽元素 content 出現中文亂碼
- stm出現Flash Timeout解決辦法
- 解決Tomcat視窗中文亂碼Tomcat
- springmvc 解決中文亂碼問題SpringMVC
- MySql中文亂碼問題解決MySql
- 解決 SecureCRT 和 SecureFX 中文亂碼Securecrt
- Jmeter 解決中文亂碼問題JMeter
- Dbvisualizer9.0.6 解決中文亂碼
- Testng results報告出現中文亂碼和更新maven出現報錯現象實戰解決Maven