importjava.io.UnsupportedEncodingException;publicclassPR36252{publicstaticvoidmain(String[]args){try{byte[]txt=newbyte[]{-55,87,-55,-42,-55,-20};// This new String(...) should not throw an OutOfMemoryError.Strings=newString(txt,0,6,"MS932");}catch(UnsupportedEncodingExceptione){// Silently ignore.}System.out.println("ok");}}