示例#1
0
文件: Dir.java 项目: vvs/jruby
 private static String newStringFromUTF8(byte[] buf) {
   return RubyEncoding.decodeUTF8(buf);
 }
示例#2
0
文件: Dir.java 项目: vvs/jruby
 private static String newStringFromUTF8(byte[] buf, int offset, int len) {
   return RubyEncoding.decodeUTF8(buf, offset, len);
 }