I am new to both R and Java.I need to know is there any method to load R library from javaclient of Rserve for my project
You can run any command with the client that you want to run in R. It is simply communicating over a socket with the server. The server has started an embedded R process that you can communicate with.
RConnection c = new RConnection();
c.eval("library(\"plyr\")")