- To compile files
for i in *.java;do javac -d bin $i; done
- To execute operation
# Inside bin folder rmic MatrixImplements # Generate Stub, responsable of client server communications java Server # To server start listen java Client # Compute operation
ppcamp/java-rmi-matrix-solver-server
A project that implements an RMI server that can solve matrices
Java