2011-06-21 52 views
1

想知道是否可以從SMS重新創建PDU? 我已經看過如何從短信中獲取PDU

@Override 
public void onReceive(Context context, Intent intent) { 
Bundle bundle = intent.getExtras(); 
Object[] aPDUArray = (Object[]) bundle.get("pdus"); 

// Here it represent as a byte array, how can i convert it to String ? 

} 

回答