Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SetIntField(), String equivalent??

Status
Not open for further replies.

brownie124

Programmer
Sep 19, 2002
61
US
Hey guys, is there a JNI function that is equivalent to SetIntField() that can deal with Strings? I looked at the online reference and I didn't see anything.

Thanks,
- Brownie
 
Remember that a
Code:
String
is an
Code:
Object
- so have you tried
Code:
SetObjectField()
?

Or convert the String to a char array and use
Code:
SetCharField()
maybe ?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top