cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Syclo Data Markup Language

Former Member
0 Likes
201

Hi all

i am using IOS9+Ipad+ SMP2.3

i want to use the SDML in one of my java code. I want to know what is the device language when user is downloading the application. i need some example. I have used SDML in SQL but this time i want to use in java.

View Entire Topic
bill_froelich
Product and Topic Expert
Product and Topic Expert
0 Likes

Accessing SDML tags in java is a simple case of just calling eval on your user object and passing in the SDML.

String lang = _user.eval("<<user.client.language>>");

Will give you the two character abbreviation for the client device’s configured locale.

--Bill