Как извлечь ASCII-коды из строки 21 Январь 2009 by admin·0 Comments Nelow фрагмент кода показывает, как извлечь Ascii кодов в строке. String test = "ABCD"; for ( int i = 0; i < test.length(); ++i ) { char c = test.charAt( i ); int j = (int) c; System.out.println(j); } other