我们如何访问 Jmeter 中的 java 安全包?

How can we access the java security package in Jmeter?

我需要在 Bean Shell 上使用 Jmeter 访问 Java 中的安全包。有什么办法吗?

我有这样的错误。

Sourced file: inline evaluation of: ``import android.util.Base64.*; import java.security.spec.X509EncodedKeySpec; 

这方面的帮助很有用!

我怀疑问题出在 import android.util.Base64.* - android 包不是 Java 的一部分。你可能想要

import java.util.Base64;

请注意,您需要 Java 8