smsj

message protocols (sms, mms, wap) library

Лицензия

Лицензия

Группа

Группа

com.github.xfslove
Идентификатор

Идентификатор

smsj
Последняя версия

Последняя версия

1.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

smsj
message protocols (sms, mms, wap) library
Ссылка на сайт

Ссылка на сайт

https://github.com/xfslove/smsj
Система контроля версий

Система контроля версий

https://github.com/xfslove/smsj

Скачать smsj

Имя Файла Размер
smsj-1.0.1.pom
smsj-1.0.1.jar 113 KB
smsj-1.0.1-sources.jar 112 KB
smsj-1.0.1-javadoc.jar 520 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.xfslove/smsj/ -->
<dependency>
    <groupId>com.github.xfslove</groupId>
    <artifactId>smsj</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.xfslove/smsj/
implementation 'com.github.xfslove:smsj:1.0.1'
// https://jarcasting.com/artifacts/com.github.xfslove/smsj/
implementation ("com.github.xfslove:smsj:1.0.1")
'com.github.xfslove:smsj:jar:1.0.1'
<dependency org="com.github.xfslove" name="smsj" rev="1.0.1">
  <artifact name="smsj" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.xfslove', module='smsj', version='1.0.1')
)
libraryDependencies += "com.github.xfslove" % "smsj" % "1.0.1"
[com.github.xfslove/smsj "1.0.1"]

Зависимости

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 3.8.1

Модули Проекта

Данный проект не имеет модулей.

Maven Central Gitee Github

SMSJ

Java library implementing the 3GPP TS 23.040 and WAP-230-WSP, and allowing development of SMS or MMS and more

SMSJ is based on the marre SMSJ libraries. It contains several bug fixes, and has been generally refactored, and released at maven central repository.

Introductions

白话短信协议

白话彩信协议

白话CMPP、SGIP ---(SMSSP的doc还在写~)

Maven

<dependency>  
  <groupId>com.github.xfslove</groupId>
  <artifactId>smsj</artifactId>
  <version>1.0.1</version>
</dependency>

Packages

  • mms - a several models represents mms file.
  • sms - a several models represents sms messages.
  • wap - a several models represents wap.

Usages

  • Gsm-7bit charset

    Gsm7BitCharset.INSTANCE

  • create SMS data coding scheme

    SmsDcs dataCodingScheme = SmsDcs.general(DcsGroup.GENERAL_DATA_CODING, SmsAlphabet.LATIN1, SmsMsgClass.Cass_1);
    
    SmsDcs dataCodingScheme = SmsDcs.waitingInfo(DcsGroup.MESSAGE_WAITING_STORE_UCS2, SmsWaitingInfo.VOICE);
    
  • create SMS text message

    SmsTextMessage message = new SmsTextMessage("github");
    SmsPdu[] pdus = message.getPdus();
    
    byte[] udh = pdus[i].getUdhBytes();
    byte[] ud = pdus[i].getUdBytes();
    
  • create WAP SI Push message

    WapSIPush push = new WapSIPush("www.github.com", "github");
    SmsWapPushMessage message = new SmsWapPushMessage(push);
    SmsPdu[] pdus = message.getPdus();
    
    byte[] udh = pdus[i].getUdhBytes();
    byte[] ud = pdus[i].getUdBytes();
    
  • create WAP SL Push message

    WapSLPush push = new WapSLPush("www.github.com");
    SmsWapPushMessage message = new SmsWapPushMessage(push);
    SmsPdu[] pdus = message.getPdus();
    
    byte[] udh = pdus[i].getUdhBytes();
    byte[] ud = pdus[i].getUdBytes();
    
  • create MMS Notification message

    SmsMmsNotificationMessage message = new SmsMmsNotificationMessage("http://mms-location", 0);
    message.setFrom("from");
    message.setExpiry(absolute);
    message.setTransactionId("transaction-id");
    message.setSubject("subject");
    SmsPdu[] pdus = message.getPdus();
    
    byte[] udh = pdus[i].getUdhBytes();
    byte[] ud = pdus[i].getUdBytes();
    
  • create mixed MMS file

    MixedMms mms = new MixedMms();
    mms.setDate(shownDate);
    mms.setFrom("from");
    mms.setSubject("subject");
    mms.setTransactionId("transaction-id");
    
    mms.addBodyPart(MimeFactory.createBinaryBodyPart(imgBytes, "image/jpg"));
    mms.addBodyPart(MimeFactory.createTextBodyPart("github"));
    mms.writeTo(os);
    
  • create related MMS file

    RelatedMms mms = new RelatedMms();
    mms.setDate(shownDate);
    mms.setFrom("from");
    mms.setSubject("subject");
    mms.setTransactionId("transaction-id");
    // px
    mms.setHeight(600);
    mms.setWidth(400);
    
    SmilRegion imgRegion = new SmilRegion(SmilRegion.IMAGE);
    // percentage
    imgRegion.setHeight(60);
    imgRegion.setWidth(100);
    imgRegion.setLeft(0);
    imgRegion.setTop(0);
    mms.addRegion(imgRegion);
    
    SmilRegion txtRegion = new SmilRegion(SmilRegion.TEXT);
    // percentage
    txtRegion.setHeight(40);
    txtRegion.setWidth(100);
    txtRegion.setLeft(0);
    txtRegion.setTop(60);
    mms.addRegion(txtRegion);
    
    SmilPar par1 = new SmilPar();
    // ms
    par1.setDur(3000);
    mms.addPar(par1);
    mms.addBodyPart(MimeFactory.createBinaryBodyPart(imgBytes, "image/jpg"), SmilRegion.IMAGE);
    
    SmilPar par2 = new SmilPar();
    par2.setDur(3000);
    mms.addPar(par2);
    mms.addBodyPart(MimeFactory.createTextBodyPart("github"), SmilRegion.TEXT);
    // notice: must one smilPar one BodyPart
    mms.writeTo(os);
    

Версии библиотеки

Версия
1.0.1
1.0.0