byte []到RubyString,用于JRuby Java Extension中的字符串xor

时间:2015-07-13 02:57:30

标签: java jruby jruby-java-interop

我正在尝试为JRuby实现Java扩展来执行字符串xors。我只是不确定如何将一个字节数组类型转换为RubyString

public static RubyString xor(ThreadContext context,  IRubyObject self, RubyString x, RubyString y) {
    byte[] xBytes = x.getBytes();
    byte[] yBytes = y.getBytes();

    int length = yBytes.length < xBytes.length ? yBytes.length : xBytes.length;

    for(int i = 0; i < length; i++) {
        xBytes[i] = (byte) (xBytes[i] ^ yBytes[i]);
    }

    // How to return a RubyString with xBytes as its content?
}

此外,如何在原地执行相同的操作(即更新x的值)?

2 个答案:

答案 0 :(得分:1)

return context.runtime.newString(new ByteList(xBytes, false));

答案 1 :(得分:0)

您首先需要将字节包装在ByteListnew ByteList(xBytes, false)中。最后一个参数(Boolean copy)指示是否包装Byte数组的副本。

要更新字符串,请使用[RubyString#setValue()][2]

x.setValue(new ByteList(xBytes, false);
return x;

要返回新的RubyString,您可以将该列表传递给当前运行时#newString()

return context.runtime.newString(new ByteList(xBytes, false));