Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列オブジェクトをバイトオブジェクトに変換できませんか?
public bitmap a(String s){ byte[] b=(byte[])getValue(s); ... }
getValue文字列オブジェクトを返します。
getValue
とそのオーバーロードされたバージョンを使用String.getBytes()して、をに変換Stringしbyte[]ます。
String.getBytes()
String
byte[]
たとえば、UTF-8のような文字セットを指定できるオーバーロードされたバージョンがあります。
getBytes(String charsetName);