Reader Comments

Post a new comment on this article

bug fixed

Posted by tully on 27 Feb 2014 at 09:03 GMT

To run the plugin smoothly under windows or linux, you have to fix a bug in the BP_sensor.java file. Open it with a text editor and search for "/" in the code and replace it with File.separator

For instance on line 323 replace
int marq_Temp=String.valueOf(analysed_directory).lastIndexOf("/",String.valueOf(analysed_directory).length()-2);

with
int marq_Temp=String.valueOf(analysed_directory).lastIndexOf(File.separator,String.valueOf(analysed_directory).length()-2);

Do the same changes on lines 391 and 400.
Thank you for your comprehension.
Thomas Tully

No competing interests declared.