我是HP Load Runner的新手,試圖將現有C代碼轉換爲與Load Runner兼容。我有一個來自Load Runner的tempStr
數組,我試圖將其內容放入。我嘗試使用strcpy(lr_eval_string("{tempStr}"),str);
,但str
中的內容仍爲空。有誰知道我可以如何將tempStr
的內容寫入str
?在Load Runner中將{tempStr}的內容移動到char str []
編輯: 我的代碼是:
char str[1024];
strcpy(str,lr_eval_string("{c_Response}"));
我收到以下錯誤:如果你想要把內容
Ccode.c(22): Error: C interpreter run time error: Ccode.c (22): Error -- memory violation : Exception ACCESS_VIOLATION received.
Ccode.c(22): Error: An exception was raised while calling invocation function in interpreter extension cciext.dll: System Exceptions: EXCEPTION_ACCESS_VIOLATION.
我只能說在'strcpy(string1,string2);'中string2的內容被賦值給string1,所以string2中的字符串保持不變。 – 0decimal0