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.
私のAndroidアプリケーションはUDPパケットとしてバイナリデータを受け取ります.AndroidでそれをASCIIに変換するにはどうすればよいですか?
次のことを試してください。
byte [] data = (however you extract data from your source); String result = new String(data, "iso-8859-1");