activities
latest
false
- Información general
- Criptografía
- Base de datos
- Java
- Python
- WebAPI
Importante :
Este contenido se ha localizado parcialmente a partir de un sistema de traducción automática.
La localización de contenidos recién publicados puede tardar entre una y dos semanas en estar disponible.
Actividades de desarrollador
Última actualización 21 de may. de 2026
UiPath.Java.Activities.GetJavaField
Devuelve un campo público de una variable JavaObject especificada o de un campo estático público dentro de una clase.
Nota:
El paquete de actividades Java ahora es compatible con .NET 5 Windows.
Propiedades
Común
- 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.
Otros
- Privado : si se selecciona, los valores de variables y argumentos ya no se registran en el nivel Detallado.
Salida
- 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.
Nota:
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.