语言

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

 

编辑者为: Brock Boland 17 3月, 2014 原因: Paragraph tags added automatically from tizen_format_fix module.

响应

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