activities
latest
false
- Visão geral
- Criptografia
- Banco de Dados
- Java
- Python
- WebAPI
Atividades do desenvolvedor
Última atualização 21 de abr de 2026
UiPath.Java.Activities.GetJavaField
Retorna um campo público de uma variável JavaObject especificada ou de um campo estático público dentro de uma classe.
Observação:
O pacote de atividades Java agora é compatível com o .NET 5 Windows.
Propriedades
Comum
- DisplayName - The display name of the activity. This field supports only
Stringvariables.
Entrada
- FieldName - The name of the field that you want to return as a
JavaObjectvariable. This field supports only String variables.
Diversos
- Privado - Se selecionado, os valores de variáveis e argumentos não são mais registrados no nível Verbose.
Saída
- Result - The Java field, stored in a
JavaObjectvariable.
Destino
- TargetObject - The
JavaObjectwhich contains the field you want to retrieve. This field supports onlyJavaObjectvariables. Setting a variable in this field disables the TargetType property field. - TargetType - The name of the Java class which contains the field you want to retrieve. This field supports only strings and String variables. Setting a variable in this field disables the TargetObject property field.
Observação:
The TargetType property must be specified in the form
package.name.ClassName. For example, if we have a package calledcom.package.examplewhich contains the classUser.Profile, which we want to use, then the TargetType property should look likecom.package.example.User.Profile.