<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments for 人在西南</title> <atom:link href="http://shao-fan.com/blog/comments/feed" rel="self" type="application/rss+xml" /><link>http://shao-fan.com/blog</link> <description>Just another WordPress weblog</description> <lastBuildDate>Wed, 11 Apr 2012 05:13:31 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Fan</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-231</link> <dc:creator>Fan</dc:creator> <pubDate>Wed, 11 Apr 2012 05:13:31 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-231</guid> <description>你的系统语言是什么？</description> <content:encoded><![CDATA[<p>你的系统语言是什么？</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by 小凡</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-223</link> <dc:creator>小凡</dc:creator> <pubDate>Fri, 30 Mar 2012 16:28:26 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-223</guid> <description>R大牛，请问，按照你这边提供的方案能够在Eclipse 通过 Java 调用 R。但是 R 启动的过程中出现中文乱码！！！望指教谢谢
小凡</description> <content:encoded><![CDATA[<p>R大牛，</p><p> 请问，按照你这边提供的方案能够在Eclipse 通过 Java 调用 R。但是 R 启动的过程中出现中文乱码！！！</p><p>望指教</p><p>谢谢<br /> 小凡</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Fan</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-219</link> <dc:creator>Fan</dc:creator> <pubDate>Tue, 20 Mar 2012 06:19:23 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-219</guid> <description>用不用ECLIPSE都没关系，道理是一样的，一个是运行java命令时要有-Djava.library.path这个参数，另一个是R.dll必须在PATH这个环境变量上。你做到这两点就没问题了。</description> <content:encoded><![CDATA[<p>用不用ECLIPSE都没关系，道理是一样的，一个是运行java命令时要有-Djava.library.path这个参数，另一个是R.dll必须在PATH这个环境变量上。你做到这两点就没问题了。</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Kevin</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-218</link> <dc:creator>Kevin</dc:creator> <pubDate>Mon, 19 Mar 2012 09:00:16 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-218</guid> <description>如果我不用eclipse编译，直接命令行编译，应该怎么设置那个environment呢？我试过在系统环境变量里添加那个R的路径，但还是不行~~你知道应该怎么办吗？谢谢！</description> <content:encoded><![CDATA[<p>如果我不用eclipse编译，直接命令行编译，应该怎么设置那个environment呢？我试过在系统环境变量里添加那个R的路径，但还是不行~~你知道应该怎么办吗？谢谢！</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Fan</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-189</link> <dc:creator>Fan</dc:creator> <pubDate>Sun, 12 Feb 2012 16:44:07 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-189</guid> <description>步骤4.2设置了吗？这个错误是因为找不到JRI的DLL造成的。</description> <content:encoded><![CDATA[<p>步骤4.2设置了吗？这个错误是因为找不到JRI的DLL造成的。</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Wang</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-188</link> <dc:creator>Wang</dc:creator> <pubDate>Sun, 12 Feb 2012 09:42:21 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-188</guid> <description>我知道了，R_home还要在环境变量里面设置，然后重启才能生效。第一个例子做出来了，第二个例子走到Creating Rengine (with arguments)后，还是显示Cannot find JRI native library!
Please make sure that the JRI native library is in a directory listed in java.library.path.java.lang.UnsatisfiedLinkError: no jri in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1709)
at java.lang.Runtime.loadLibrary0(Runtime.java:823)
at java.lang.System.loadLibrary(System.java:1030)
at org.rosuda.JRI.Rengine.(Rengine.java:19)
at rtest2.main(rtest2.java:72)
很崩溃！！！</description> <content:encoded><![CDATA[<p>我知道了，R_home还要在环境变量里面设置，然后重启才能生效。第一个例子做出来了，第二个例子走到Creating Rengine (with arguments)后，还是显示Cannot find JRI native library!<br /> Please make sure that the JRI native library is in a directory listed in java.library.path.</p><p>java.lang.UnsatisfiedLinkError: no jri in java.library.path<br /> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1709)<br /> at java.lang.Runtime.loadLibrary0(Runtime.java:823)<br /> at java.lang.System.loadLibrary(System.java:1030)<br /> at org.rosuda.JRI.Rengine.(Rengine.java:19)<br /> at rtest2.main(rtest2.java:72)<br /> 很崩溃！！！</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Wang</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-187</link> <dc:creator>Wang</dc:creator> <pubDate>Sun, 12 Feb 2012 08:26:08 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-187</guid> <description>我的rtest显示出来Creating Rengine (with arguments)了，我把java.library.path似乎解决了，但是和你的结果还是差一些。Native library可以右击项目，在property for src中设置。</description> <content:encoded><![CDATA[<p>我的rtest显示出来Creating Rengine (with arguments)了，我把java.library.path似乎解决了，但是和你的结果还是差一些。Native library可以右击项目，在property for src中设置。</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Wang</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-186</link> <dc:creator>Wang</dc:creator> <pubDate>Sun, 12 Feb 2012 07:28:39 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-186</guid> <description>有一个R_home变量是不是也需要设置呢？我看很多人说要设置那个东西，如果要的话在哪里设置呢？</description> <content:encoded><![CDATA[<p>有一个R_home变量是不是也需要设置呢？我看很多人说要设置那个东西，如果要的话在哪里设置呢？</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Fan</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-185</link> <dc:creator>Fan</dc:creator> <pubDate>Sun, 12 Feb 2012 06:21:52 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-185</guid> <description>你说的这个设置是配置JRI的链接库的，这个一定要有。其次Environment这个tab里要配PATH</description> <content:encoded><![CDATA[<p>你说的这个设置是配置JRI的链接库的，这个一定要有。其次Environment这个tab里要配PATH</p> ]]></content:encoded> </item> <item><title>Comment on 从Java里调用R &#8211; JRI的设置方法 by Wang</title><link>http://shao-fan.com/blog/eclipse-jri.html/comment-page-1#comment-184</link> <dc:creator>Wang</dc:creator> <pubDate>Sun, 12 Feb 2012 06:01:36 +0000</pubDate> <guid isPermaLink="false">http://shao-fan.com/blog/?p=170#comment-184</guid> <description>我也觉的是类名出了问题。是不是在-Djava.library.path设置的地方，最后还需要补上类名呢？如rtest在右边列出的tab中，选择Arguments这个tab，在VM Arguments里加入一行：-Djava.library.path=”C:\Program Files\R\R-2.13.1\library\rJava\jri”。</description> <content:encoded><![CDATA[<p>我也觉的是类名出了问题。是不是在-Djava.library.path设置的地方，最后还需要补上类名呢？如rtest</p><p>在右边列出的tab中，选择Arguments这个tab，在VM Arguments里加入一行：-Djava.library.path=”C:\Program Files\R\R-2.13.1\library\rJava\jri”。</p> ]]></content:encoded> </item> </channel> </rss>
