How can we achieve IPC in JAVA?



How can we achieve IPC in JAVA?..

Answer / vrb

Inter Process Communication can be achieved by the use of network sockets. If both are java processes, RMI is the best. If unsure, one can use SOAP standard.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What are inner classes or non static nested classes in java?

1 Answers  


What are the differences between unchecked exception, checked exception, and errors?

2 Answers  


How do generics work?

1 Answers  


Can Exception handling we can handle multiple catch blocks?

1 Answers   PUCIT,


How to send a request to garbage collector?

4 Answers  


What is the maximum size of byte array in java?

1 Answers  


What are java annotations?

1 Answers  


What is integer parseint?

1 Answers  


What is replaceall in java?

1 Answers  


What are the 7 types of characters?

1 Answers  


Why is stringbuffer called mutable?

1 Answers  


Hi Every One I Have Small Doubt Please answer This???????????????????????????? I Want to use AbstractList class methods(java.util.AbstractList) My Program is import java.util.*; class DemoOne extends AbstractList { public static void main(String[] args) { AbstractList a=new DemoOne();//This One is Correct?? DemoOne a1=new DemoOne();//This One is Correct?? Both Are Not Working System.out.println("Hello World!"+a); System.out.println("Hello World!"+a1); } } Error IS: DemoOne.java:2: DemoOne is not abstract and does not override abstract method get(int) in java.util.AbstractList class DemoOne extends AbstractList AnyOne can Please Provide The Solution????????????????????????? Plzzzzzzz

3 Answers  


Categories