Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 2

Warning: include_once(http://www.confrage.com/bin/header.php): failed to open stream: no suitable wrapper could be found in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 2

Warning: include_once(): Failed opening 'http://www.confrage.com/bin/header.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 2
指定した文字コードで文字のバイト数を求める | Java | 株式会社CONFRAGE
Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 17

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 17
指定した文字コードで文字のバイト数を求める
指定した文字コードで文字のバイト数を求めるにはString#getBytesメソッドを使用します。
getBytesメソッドの引数には文字コードを指定します。
Shift-JISとMS932は同じです。
また、引数を指定しない場合はプラットフォームの文字コードが指定されます。

public class Test {
    public static void main(String[] args) throws Exception{
        String str = "あ";
        System.out.println(str.getBytes("UTF-8").length);
        System.out.println(str.getBytes("Shift-JIS").length);
        System.out.println(str.getBytes("MS932").length);
        System.out.println(str.getBytes("EUC-JP").length);
    }
}
実行結果は以下のようになります。

3
2
2
2

Back to top

Information

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 76

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 76

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/seo.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 85

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/seo.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/string/calc_bytes/calc_bytes.html on line 85