IIRC

For the execution you need:

java hello

and not just 'hello.class' (which is not executable)

Birger Heede
IBM SWG


Steve Comstock wrote:
Kevin Pintar wrote:
Steve,

Not being an expert in this area, I apologize for possibly wasting your
time, but I was hoping to seed your exploration with the information I
was given as a starting point.

It "seems" as though the file.encoding system property is related to the
file system you are using (HFS, z/FS). It very well could be that there is an esoteric property related to the
actual mount point you are using... heck I don't know.

Here is a small java program I wrote to see what my file.encoding system
property was:

import java.io.*; public class Jtest { public static void main(String args[]) { System.out.println("file.encoding is " + System.getProperty("file.encoding")); } } In my case, the result was: file.encoding is Cp1047

Cp1047 is EBCDIC Latin-1 (If I'm not mistaken).

I'm curious if yours says the same thing.  It may not be a Java setting
that is causing your problem but a file system attribute somewhere.

Just trying to help,
Kevin

Doesn't run. I compiled it OK, but when I run, same set of messages:


Jtest.class 5: FSUM7343 cannot open "ÈëÈÊÁ/_---" for output: EDC5129I No such file or directory.

Jtest.class 5: FSUM7343 cannot open "¦/Î/%/" for input: EDC5129I No such file or directory.

Jtest.class 5: FSUM7343 cannot open "¦/Î/Ñ?" for input: EDC5129I No such file or directory.


Kind regards,

-Steve Comstock

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to