언어 설정

Menu
Sites
Language
printing ByteBuffer in AppLog

Hi All,

I have received the data from the socket from client and i want to print the data in AppLog. able to convert the ByteBuffer to Tizen::Base::String. How to print the String data in AppLog ?

Best regards,

Mohan

 

Edited by: Brock Boland on 17 3월, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

2 댓글
Alex Dem
Hi, try this way: Tizen::Base::String str; ... AppLog("MyLog=%S",str.GetPointer()); Alexey.
Mohan Kumar
Thanks Alex.