How to convert string to ASCII in Java?

Опубликовано: 12 Октябрь 2024
на канале: roseindiatutorials
8,040
39

In this video tutorial you will learn How to convert string to ASCII in Java?

You can convert character to ASCII by:
int ascii = (int) character;

You can Convert ASCII to character by:

char character = (char)ascii;

Get source code from http://www.roseindia.net/java/java-ge...
Check more tutorials at:
http://www.roseindia.net/
http://www.roseindia.net/java/
http://www.roseindia.net/hibernate/
http://www.roseindia.net/struts/
http://www.roseindia.net/spring/
http://www.roseindia.net/ajax/
http://www.roseindia.net/jsp/