28. 下列 Android 程式片段之空格處,應如何填寫才能讓程式執行後 str 所 參考的字串物件的內容維持為"程式設計"?
String str = "程式設計";
try {
str = new String( str.getBytes("big5"), ____________ );
} catch (java.io.UnsupportedEncodingException e) {
e.printStackTrace();
}
(A) "big5"
(B) "shift-jis"
(C) "iso-8859-1"
(D) "ascii"