开发者社区> 问答> 正文

在Java中编码字符串并在R中解码

这是我的绳子

在Java中:

String s1 ="hello there";


String encoded = Base64.encodeBytes(widgetData.getBytes());

# aGVsbG8gdGhlcmU=  // encode output


String output =new String(Base64.decode(encoded));


System.out.println(output);

# hello there   // output

在R中:

context <- "hello there"

a<- base64_enc(serialize(context , NULL))


 unserialize(base64_dec(a)) 

  // hello there

它可以单独完美地工作,但是当将编码数据从Java传递到R时,它不起作用

我正在使用Vert.x

展开
收起
垚tutu 2019-11-28 22:50:34 774 0
0 条回答
写回答
取消 提交回答
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载