gpt4 book ai didi

java - 为适用于 SmsMessage.createFromPdu() (GSM 3gpp) 的 Android 创建 PDU

转载 作者:搜寻专家 更新时间:2023-10-30 21:00:21 26 4
gpt4 key购买 nike

目标:(注意:选择的答案生成一个 GSM (3gpp) PDU)CDMA (3gpp2) please refer here

创建一个可以传递给 SmsMessage.createFromPdu(byte[] pdu) 的 PDU。我正在向我的一个监听 SMS 消息的 BroadcastReciever“广播 Intent”。

一个BroadcastReciever

android.provider.Telephony.SMS_RECEIVED 用于“真实” SMS

为这些新的“应用程序 SMS” 使用自定义 intent-filter 操作。

@Override
public void onReceive(Context context, Intent intent) {

Bundle bundle = intent.getExtras();

if (bundle != null) {
Object[] pdusObj = (Object[]) bundle.get("pdus");
SmsMessage[] messages = new SmsMessage[pdusObj.length];

// getting SMS information from Pdu.
for (int i = 0; i < pdusObj.length; i++) {
messages[i] = SmsMessage.createFromPdu((byte[]) pdusObj[i]);
}

for (SmsMessage currentMessage : messages) {
//the currentMessage.getDisplayOriginatingAddress()
//or .getDisplayMessageBody() is null if I Broadcast a fake sms
Log.i("BB", "address:"+currentMessage.getDisplayOriginatingAddress()+" message:"+currentMessage.getDisplayMessageBody());
...

所以我希望我的 BroadcastReciever 能够在不添加额外代码的情况下处理这两种类型的消息

(是的,我知道我可以为不同的 intent-filter 操作设置不同的 BroadcastReciever,但我想实际实现它,因为我知道它可以完成, 我很固执)

研究:

我整天/晚上都在做研究。我尝试自己编写,尽管我对数学和转换以及创建合适的算法非常糟糕。我看过Stack topics on PDUs , 和 Create PDU Android但答案中的链接已断开。我什至看过 com.google.android.mms.pdu 源代码

到目前为止,我只能使用 http://www.wrankl.de/JavaPC/SMSTools.html 中的一些代码创建没有“起始地址”的 PDU。

PDU:

目的地:555 消息:helloworld

"1100038155f50000aa0ae8329bfdbebfe56c32"

这显然是无效的...

边注:

除了本地使用之外,我不打算对 PDU 做任何事情,我不想在我的代码中使用硬编码的 PDU,因为我不会重复使用 PDU。

如果我可以将任何内容添加到我用来添加“原始地址” 的代码中,那将会起作用。或者有人知道我不知道的图书馆的信息吗?

谢谢

更新:

尝试过

byte[] by =(byte[])(SmsMessage.getSubmitPdu("12345", "1234", "hello", false).encodedMessage);

这给了我以下内容(以十六进制表示)

"0000100200000000000000000000000004010203040000000e000320ec400107102e8cbb366f00"

没用

最佳答案

也许此代码段没有您想要的许多详细信息字段,但出于我的简单目的,它可以像其他短信一样调用通知。

    private static void createFakeSms(Context context, String sender,
String body) {
byte[] pdu = null;
byte[] scBytes = PhoneNumberUtils
.networkPortionToCalledPartyBCD("0000000000");
byte[] senderBytes = PhoneNumberUtils
.networkPortionToCalledPartyBCD(sender);
int lsmcs = scBytes.length;
byte[] dateBytes = new byte[7];
Calendar calendar = new GregorianCalendar();
dateBytes[0] = reverseByte((byte) (calendar.get(Calendar.YEAR)));
dateBytes[1] = reverseByte((byte) (calendar.get(Calendar.MONTH) + 1));
dateBytes[2] = reverseByte((byte) (calendar.get(Calendar.DAY_OF_MONTH)));
dateBytes[3] = reverseByte((byte) (calendar.get(Calendar.HOUR_OF_DAY)));
dateBytes[4] = reverseByte((byte) (calendar.get(Calendar.MINUTE)));
dateBytes[5] = reverseByte((byte) (calendar.get(Calendar.SECOND)));
dateBytes[6] = reverseByte((byte) ((calendar.get(Calendar.ZONE_OFFSET) + calendar
.get(Calendar.DST_OFFSET)) / (60 * 1000 * 15)));
try {
ByteArrayOutputStream bo = new ByteArrayOutputStream();
bo.write(lsmcs);
bo.write(scBytes);
bo.write(0x04);
bo.write((byte) sender.length());
bo.write(senderBytes);
bo.write(0x00);
bo.write(0x00); // encoding: 0 for default 7bit
bo.write(dateBytes);
try {
String sReflectedClassName = "com.android.internal.telephony.GsmAlphabet";
Class cReflectedNFCExtras = Class.forName(sReflectedClassName);
Method stringToGsm7BitPacked = cReflectedNFCExtras.getMethod(
"stringToGsm7BitPacked", new Class[] { String.class });
stringToGsm7BitPacked.setAccessible(true);
byte[] bodybytes = (byte[]) stringToGsm7BitPacked.invoke(null,
body);
bo.write(bodybytes);
} catch (Exception e) {
}

pdu = bo.toByteArray();
} catch (IOException e) {
}

Intent intent = new Intent();
intent.setClassName("com.android.mms",
"com.android.mms.transaction.SmsReceiverService");
intent.setAction("android.provider.Telephony.SMS_RECEIVED");
intent.putExtra("pdus", new Object[] { pdu });
intent.putExtra("format", "3gpp");
context.startService(intent);
}

private static byte reverseByte(byte b) {
return (byte) ((b & 0xF0) >> 4 | (b & 0x0F) << 4);
}

希望你能找到有用的东西

更新:

 public static final SmsMessage[] getMessagesFromIntent(
Intent intent) {
Object[] messages = (Object[]) intent.getSerializableExtra("pdus");
byte[][] pduObjs = new byte[messages.length][];

for (int i = 0; i < messages.length; i++) {
pduObjs[i] = (byte[]) messages[i];
}
byte[][] pdus = new byte[pduObjs.length][];
int pduCount = pdus.length;
SmsMessage[] msgs = new SmsMessage[pduCount];
for (int i = 0; i < pduCount; i++) {
pdus[i] = pduObjs[i];
msgs[i] = SmsMessage.createFromPdu(pdus[i]);
}
return msgs;
}

关于java - 为适用于 SmsMessage.createFromPdu() (GSM 3gpp) 的 Android 创建 PDU,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12335642/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com