View previous topic :: View next topic
|
Author |
Message |
Virendra Shambharkar
New User
Joined: 26 Aug 2015 Posts: 55 Location: India
|
|
|
|
Hi,
I am passing a flat file to a Java program as below :-
Code: |
//*------------------------------------------------------
//* RUN JAVA PROGRAM TO USE THE SORTED FILE
//*------------------------------------------------------
//STEP2 EXEC PGM=BPXBATCH,
// PARM='SH java Filepgm1 //DD:INPUT'
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//STDOUT DD PATH='/u/user/inp2.stdout',
// PATHOPTS=(OWRONLY,OCREAT,OTRUNC),
// PATHMODE=SIRWXU
//STDERR DD PATH='/u/user/err2.stdout',
// PATHOPTS=(OWRONLY,OCREAT,OTRUNC),
// PATHMODE=SIRWXU
//STDENV DD *
PATH=/bin
JAVA_HOME=/u/user
/*
//INPUT DD DSN=TEST.SORT.OUT.JAVA,DISP=SHR |
but getting an error "Exception in thread "main" java.io.FileNotFoundException:
Can you please advise how do I get rid of this error.
Thanks in advance. |
|
Back to top |
|
|
Nic Clouston
Global Moderator
Joined: 10 May 2007 Posts: 2454 Location: Hampshire, UK
|
|
|
|
Assuming that the JCL above is correct then correct your program. |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10891 Location: italy
|
|
|
|
You probably have a wrong ddname specified inside Your program |
|
Back to top |
|
|
Rohit Umarjikar
Global Moderator
Joined: 21 Sep 2010 Posts: 3077 Location: NYC,USA
|
|
|
|
Quote: |
but getting an error "Exception in thread "main" java.io.FileNotFoundException: |
There could be many reason to it, it could be access isssue, did you first check it with the team who manages the Java code, they must tell you why you are getting this error? If not, then please do so. |
|
Back to top |
|
|
Virendra Shambharkar
New User
Joined: 26 Aug 2015 Posts: 55 Location: India
|
|
|
|
Hi,
While reading the file I am using the below syntax
Code: |
public static void main(String-- args) throws Exception {
File file=new File("//DD:INPUT");
Scanner sc=new Scanner(file); |
Thanks,
Virendra |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10891 Location: italy
|
|
|
|
my usual way of debugging this errors
( where the error messages gives no hint at all )
is to find out the behaviour when I KNOW i made one (error )
just change the ddname in the jcl to something else
or just drop the DD statement and see what happens
or ...
Quote: |
java.io.FileNotFoundException |
some OTHER DDname - but nobody here will be able to tell - is really missing from the JCL |
|
Back to top |
|
|
|