ASCII akronym for American Standard Code for Information Interchange. Det er et 7-bit tegnsæt indeholder 128 (0 til 127) tegn. Det repræsenterer den numeriske værdi af et tegn. For eksempel ASCII værdi af EN er 65 .
I dette afsnit vil vi lære hvordan man udskriver ASCII-værdi eller kode gennem en Java program.
Der er to måder at udskrive ASCII-værdi på Java :
Tildeling af en variabel til int-variablen
For at udskrive ASCII-værdien af et tegn, behøver vi ikke bruge nogen metode eller klasse. Java konverterer internt tegnværdien til en ASCII-værdi.
Lad os finde ASCII-værdien af et tegn gennem a Java program .
I det følgende program har vi tildelt to karakterer -en og b i ch1 og ch2 variabler, hhv. For at finde ASCII-værdien af -en og b, vi har tildelt ch1 og ch2 variabler til heltalsvariablerne asciiværdi1 og asciivalue2, henholdsvis. Til sidst har vi udskrevet variablen asciiværdi1 og asciiværdi2 hvori ASCII-værdierne for tegnene er gemt.
PrintAsciiValueExample1.java
public class PrintAsciiValueExample1 { public static void main(String[] args) { // character whose ASCII value to be found char ch1 = 'a'; char ch2 = 'b'; // variable that stores the integer value of the character int asciivalue1 = ch1; int asciivalue2 = ch2; System.out.println('The ASCII value of ' + ch1 + ' is: ' + asciivalue1); System.out.println('The ASCII value of ' + ch2 + ' is: ' + asciivalue2); } }
Produktion:
The ASCII value of a is: 97 The ASCII value of b is: 98
En anden måde at skrive ovenstående program på er:
ulv vs ræv
PrintAsciiValueExample2.java
public class PrintAsciiValueExample2 { public static void main(String[] String) { int ch1 = 'a'; int ch2 = 'b'; System.out.println('The ASCII value of a is: '+ch1); System.out.println('The ASCII value of b is: '+ch2); } }
Produktion:
The ASCII value of a is: 97 The ASCII value of b is: 98
På samme måde kan vi udskrive ASCII-værdien af andre tegn (A, B, C, …., Z) og symboler (!, @, $, * osv.).
Brug af Type-Casting
Type-casting er en måde at caste en variabel til en anden datatype.
I det følgende program har vi erklæret to variable ch1 og ch2 af typen char har karakteren -en og b, henholdsvis. I de næste to linjer har vi støbt char type til int type vha (int) . Efter at have udført disse to linjer, vil variablen ch1 og ch2 konverteres til en int-variabel ascii1 og ascii2 , henholdsvis.
Til sidst har vi udskrevet variablen ascii1 og ascii2 hvori ASCII-værdierne for tegnene er gemt.
PrintAsciiValueExample3.java
public class PrintAsciiValueExample3 { public static void main(String[] args) { //characters whose ASCII value to be found char ch1 = 'a'; char ch2 = 'b'; //casting or converting a charter into int type int ascii1 = (int) ch1; int ascii2 = (int) ch2; System.out.println('The ASCII value of ' + ch1 + ' is: ' + ascii1); System.out.println('The ASCII value of ' + ch1 + ' is: ' + ascii2); } }
Produktion:
The ASCII value of a is: 97 The ASCII value of b is: 98
Hvis vi ikke ønsker at tildele karakter, kan vi også tage en karakter fra brugeren.
PrintAsciiValueExample4.java
import java.util.Scanner; public class PrintAsciiValueExample4 { public static void main(String args[]) { System.out.print('Enter a character: '); Scanner sc = new Scanner(System.in); char chr = sc.next().charAt(0); int asciiValue = chr; System.out.println('ASCII value of ' +chr+ ' is: '+asciiValue); } }
Output 1:
Enter a character: P ASCII value of P is: 80
Output 2:
Enter a character: G ASCII value of G is: 71
Det følgende program udskriver ASCII-værdien (0 til 255) for alle tegnene. I outputtet har vi vist et par værdier.
AsciiValueOfAllChracters.java
public class AsciiValueOfAllChracters { public static void main(String[] args) { for(int i = 0; i <= 78 255; i++) { system.out.println(' the ascii value of ' + (char)i techcodeview.com img java-tutorial how-print-ascii-value-java.webp' alt="How to Print ASCII Value in Java"> <p>If we want to print the ASCII value of all the alphabets (A to Z), we can set the values in the loop and print them.</p> <p> <strong>AsciiValueAtoZ.java</strong> </p> <pre> public class AsciiValueAtoZ { public static void main(String[] args) { for(int i = 65; i <= 78 90; i++) { system.out.println(' the ascii value of ' + (char)i techcodeview.com img java-tutorial how-print-ascii-value-java-2.webp' alt="How to Print ASCII Value in Java"> <p>Similarly, we can print the ASCII value of <strong>a to z</strong> by changing the loop in the above code.</p> <pre> for(int i = 97; i <= 122; i++) < pre> <hr></=></pre></=></pre></=>=>=>