次のプログラム出力は、Windows システムと Unix システムで異なります。なぜこれが起こっているのか、またこの動作を Unix と Windows で一貫させる方法を教えてください。
ファイルのエンコードに Unix を使用しているため、Windows システムではデコードできません。
この点で何か助けていただければ幸いです。前もって感謝します。
import sun.misc.BASE64Encoder;
import sun.misc.CharacterEncoder;
public class TestEncode {
public static void main(String[] args) {
byte signature[] = "[35, 44, -31, 18, 78, 84, -113, 1, 27, 36, -79, -60, 75, -14, -80, -99, 65, 11, -45, -54, 23, -100, 74, -54, -26, -77, 33, -40, 104, 90, -33, 32, -123, -76, -27, -118, -25, -97, -85, 22, -64, 102, -7, 119, -65, 35, -114, 31, -83, 73, -57, 63, -7, 47, -31, 48, 28, -109, 54, -90, -24, -21, -102, 59, 82, -14, -52, -77, -22, -25, -15, -81, 70, 52, -42, 93, 76, -51, 96, 87, 29, -37, -40, -71, -121, 44, -44, 74, 23, -76, 29, 108, -56, 48, 46, -26, -73, -53, 90, 53, 25, -96, 115, -79, 93, -128, -46, -119, -30, 22, -107, -27, 6, -120, 2, 19, -72, -5, 30, -54, -34, 26, -22, -44, 93, 40, 84, -125]".getBytes();
byte encodedSignature[] = null;
CharacterEncoder encoder;
encoder = new BASE64Encoder();
encodedSignature = encoder.encode(signature).getBytes();
System.out.println(encodedSignature.length);
}
}