Program java arguments


 
Thread Tools Search this Thread
Top Forums Programming Program java arguments
# 1  
Old 05-06-2012
Program java arguments

Hello,

Quote:
java prog arg1 arg2
The arguments are strings. In my code I need them to be a different type, I do the cast but it is not feasible ...
Have you any idea?

Thank you
# 2  
Old 05-06-2012
Arguments are character strings. What datatype do you need them to be?
args are the command line arguments
Code:
int firstArg;
if (args.length > 0) {
    try {
        firstArg = Integer.parseInt(args[0]);
    } catch (NumberFormatException e) {
        System.err.println("Argument" + " must be an integer");
        System.exit(1);
    }
}

This User Gave Thanks to jim mcnamara For This Post:
# 3  
Old 05-06-2012
No, it is not an integer. It is an object of a class that I use from an API.
the exception is : cannot cast from string to the object

Please have you an idea?
# 4  
Old 05-06-2012
The shell doesn't handle objects but strings. You should give more clues about this API and what class you are referring to. Casting a string to it is certainly a wrong approach. You should also explain how you pass this object to the shell in the first place.
These 2 Users Gave Thanks to jlliagre For This Post:
# 5  
Old 05-07-2012
i use the freepastry API ,
inside my java program prog1.java i call a script (./script.sh a );a is a NodeHandle
script.sh
Quote:
command
java prog2 $1
command
i want that $1 will be an object NodeHandle in prog2.. but the exception is cannot cast from string to NodeHandle

Thank you
# 6  
Old 05-07-2012
If NodeHandle is serializable, store it somewhere on disk and pass its filename to prog2.
This User Gave Thanks to jlliagre For This Post:
# 7  
Old 05-07-2012
Yes the NodeHandle is serializable, i store it in a buffer like that?
Quote:
OutputBuffer buf;
NodeHandle nh;
nh.serialize(buf);
Please how can i deserialize it after?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Interpreting arguments in Perl program.

Hello. I'm new to Perl and I am not sure how to interpret command line arguments in the program. I am writing a program similar to the Unix utility 'tail' and need to check if first argument is '-1' (1) or any arbitrary number of lines to output. How would I write an 'if' statement to check for... (4 Replies)
Discussion started by: D2K
4 Replies

2. Programming

Writing C++ program Arguments and Classes

I want to write a C++ program that uses a class to do some calculations. I pass arguments to the program, some of which are used to set up class members. A class function will then perform the necessary calculations. I am wondering how I should pass the arguments from the program to set the... (2 Replies)
Discussion started by: kristinu
2 Replies

3. Programming

Passing arguments from java to script shell

Hello Please i want to pass parameter (the string s) to the shell script: Quote: String s="Hello"; Process process = Runtime.getRuntime().exec("sh script1.sh"); How can i do please? Thank you (0 Replies)
Discussion started by: chercheur857
0 Replies

4. Programming

Changing the way arguments are read from program

I have the following piece of code. Currently the command line arguments are passed as shown below using the "= "sign. I capture the name of the argument, for example vmod and it's corresponding user parameter which is jcdint-z30.cmd. ./raytrac vmod=jcdint-z30.cmd srFile=jcdint.sr Now I want... (12 Replies)
Discussion started by: kristinu
12 Replies

5. Shell Programming and Scripting

How to make bash wrapper for java/groovy program with variable length arguments lists?

The following bash script does not work because the java/groovy code always thinks there are four arguments even if there are only 1 or 2. As you can see from my hideous backslashes, I am using cygwin bash on windows. export... (1 Reply)
Discussion started by: siegfried
1 Replies

6. Shell Programming and Scripting

How to give runtime arguments to different program

I have a shell script that is attempting to call a c program. I call the c program with ./dictool dictool accepts arguments at runtime. It works by prompting the user for various commands, acting on those commands, spitting out an output, and then prompting for more commands. My question is,... (1 Reply)
Discussion started by: aarongoldfein
1 Replies

7. UNIX for Dummies Questions & Answers

passing arguments from shell to java

Hi: I have a script called runjava: The content --- search=$1 dpi=$2 prefix=$3 input=$4 output=$5 java -Djava.library.path=./lib/path/Lib -classpath .:lib/path/Lib/mylib.jar myclass $search $dpi $prefix $input $output How does myclass parse arguments --- String searchTerm =... (3 Replies)
Discussion started by: kenpeter
3 Replies

8. Shell Programming and Scripting

pass arguments to called program

Thank you very much. (2 Replies)
Discussion started by: ShellUser
2 Replies

9. Shell Programming and Scripting

two arguments with nawk program

Can someone help me to understand this part of code? /bin/nawk -f awkfile file1 file2 I know awkfile is the one with awk script. file1 is source file that needs to be processed. What is file2 two? Thanks for your help! (4 Replies)
Discussion started by: whatisthis
4 Replies

10. UNIX for Advanced & Expert Users

Arguments to a shell program

Hi List, Is it possible to pass one argument to a shell program eg) there is a shell program abc which takes one arguments abc one Due to some reasons I pass abc one two Now one,two must be considered as "one" argument to the shell programs. Any suggestions,hints are welcome. ... (3 Replies)
Discussion started by: csvenkata
3 Replies
Login or Register to Ask a Question