You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
719 B
33 lines
719 B
package sample.rmi;
|
|
|
|
import javassist.tools.rmi.AppletServer;
|
|
import java.io.IOException;
|
|
import javassist.CannotCompileException;
|
|
import javassist.NotFoundException;
|
|
|
|
public class Counter {
|
|
private int count = 0;
|
|
|
|
public int get() {
|
|
return count;
|
|
}
|
|
|
|
synchronized public int increase() {
|
|
count += 1;
|
|
return count;
|
|
}
|
|
|
|
public static void main(String[] args)
|
|
throws IOException, NotFoundException, CannotCompileException
|
|
{
|
|
if (args.length == 1) {
|
|
AppletServer web = new AppletServer(args[0]);
|
|
web.exportObject("counter", new Counter());
|
|
web.run();
|
|
}
|
|
else
|
|
System.err.println(
|
|
"Usage: java sample.rmi.Counter <port number>");
|
|
}
|
|
}
|