Click here to Skip to main content
15,890,186 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I usually use the gsm7bitencoder.java to convert ascii 8 bit characters to 7 bit. How do you use gsm7bitencoder to make ascii 7 bit characters on the fly.
Demonstrations would kindly be appreciated.
Thanks in advance.
Posted

1 solution

Taken from the test file for Gsm7BitEncoderDecoder

C#
Gsm7BitEncoderDecoder converter = new Gsm7BitEncoderDecoder();
       String s = "abc";
       String encoded = converter.encode(s);
       String decoded = converter.decode(encoded);


/Darren
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900