File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
JavaRanch
»
Java Forums
»
Java
»
Beginning Java
Author
passing and getting parameters
preethi Ayyappan
Ranch Hand
Joined: Oct 04, 2007
Posts: 518
posted
Aug 13, 2008 23:12:00
0
Hi,
I am calling one
java
standalone application from another standalone application like the following
Class c=Class.forName("Ivr"); Object obj=c.newInstance(); Ivr h=(Ivr)obj; h.service(request,channel);
I want to pass and get parameters in both the application.Is it possible in standalone application?
Thanks.
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32604
4
posted
Aug 14, 2008 04:05:00
0
Are you running two JVMs?
Do a search on JavaRanch; that sort of question comes up about every two weeks. Lots of possibilities:
You could connect the two together with Sockets.
You could create a class to embody data and serialise its instances from one application and deserialise them into the other application.
You could have a text file with data in, writing and rewriting it from the different applications.
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
I like...
posted
Aug 14, 2008 10:56:00
0
I have a question for you.
Your code obviously recognizes class Ivr. Yet you still use reflection to create an instance. Why?
First of all, why use Class.forName if Ivr is available; therefore Ivr.class is also available. That will return the same as Class.forName("Ivr").
Second of all, why not say
Ivr h = new Ivr(); h.service(request,channel);
That's a) a lot better to read, and b) faster.
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions
How To Answer Questions
I agree. Here's the link:
http://zeroturnaround.com/jrebel
subject: passing and getting parameters
Similar Threads
Port not being released
Tomcat console window to be closed when browser window is closed
Not able to read XML file from dependent project
How to store an XML file as a string in database and retrieve in Java code
NoInitialContextException In EJB3.0with JBOSS
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter