Is it possible in Java to access private field str via reflection? For example to get value of this field.
class Test
{
private String str;
public void setStr(String value)
{
str = value;
}
}
Is it possible in Java to access private field str via reflection? For example to get value of this field.
class Test
{
private String str;
public void setStr(String value)
{
str = value;
}
}