chunhoong / sms-receiver

A Java library to read SMS from USB 3G modem

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SMS Receiver

javadoc

SMS Receiver is a library built on top of the deprecated SMSLib V3.5.x to read SMS from 3G USB modem.

Motivation

  • The original SMSLib has dependency towards RXTX, which mostly only work well with Java 7 nowadays.

  • RXTX is not setup friendly - The jar file and binary need to be pasted into inner JRE folder of JDK installation path.

  • SMS Receiver solves this problem by replacing rxtx with its fork, nrjavaserial, which works well with Java 11 and no more manual work to copy-paste rxtx jar and its binary.

Usage

If you are on Maven, add this to pom.xml

<dependency>
  <groupId>com.chunhoong</groupId>
  <artifactId>sms-receiver-lib</artifactId>
  <version>1.0.2</version>
  <type>pom</type>
</dependency>

If you are on Gradle, add this to build.gradle

implementation 'com.chunhoong:sms-receiver-lib:1.0.2'

Start receiver

// Obtain com port number as shown in: https://raw.githubusercontent.com/chunhoong/sms-receiver/master/doc/screenshot.png
int comPortNumber = 5;

// Start sms receiver
SmsReceiver.start(comPortNumber);

Add listener

SmsReceiver.addListener(sms -> { /* You can access your incoming sms from here. */ });      

Add one time listener

SmsReceiver.once(sms -> { 
  // You can access your incoming sms from here.
});

Remove single listener

int listenerId = SmsReceiver.addListener(sms -> { /* You can access your incoming sms from here. */ });

// Remove listener by passing in listenerId.
SmsReceiver.removeListener(listenerId);

Remove all listener

// Assume three listeners are added.
SmsReceiver.addListener(sms -> { /* You can access your incoming sms from here. */ });
SmsReceiver.addListener(sms -> { /* You can access your incoming sms from here as well. */ });
SmsReceiver.addListener(sms -> { /* You can access your incoming sms from here too. */ });

// Remove all three listeners.
SmsReceiver.removeAllListeners();

Stop SMS receiver

SmsReceiver.stop();

Credits

License

Apache License 2.0

About

A Java library to read SMS from USB 3G modem

License:Apache License 2.0


Languages

Language:Java 100.0%