如何设置UTF8并通过R启动H2O Flow UI?

时间:2019-05-24 08:46:12

标签: r h2o

我想在H2O Flow UI中设置UTF8。

在终端中,我可以设置UTF8并打开H2O Flow UI。

java -jar -Dfile.encoding=UTF-8 h2o.jar

但是我通常使用R。 如何设置UTF8并通过R启动H2O Flow UI?

我尝试了以下方法。

options(encoding = "utf-8")
h2o.init()

h2o.init(extra_classpath = "-Dfile.encoding=UTF-8")

它可以运行,但没有设置UTF8

1 个答案:

答案 0 :(得分:0)

将您的选项传递给jvm_custom_args参数,而不是extra_classpath,而不是h2o.init(jvm_custom_args = "-Dfile.encoding=UTF-8")