- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Problems running class files with 'scala' on OS X
Thu, 2009-01-15, 03:13
A quick terminal session will make this clear (the following class
files were produced by 'scalac'):
Macintosh-5:hello Ken$ ls
HelloWorld$.class HelloWorld.class
Macintosh-5:hello Ken$ scala HelloWorld
no such file: HelloWorld
that should work, but just in case, I tried it using the .class
extension, which also didn't work:
Macintosh-5:hello Ken$ scala HelloWorld.class
error: IO error while decoding /Users/Ken/Projects/hello/
HelloWorld.class with UTF-8
Please try specifying another one using the -encoding option
one error found
Any thoughts on what's going wrong here? All feedback most appreciated.
Thanks,
Ken
Thu, 2009-01-15, 03:57
#2
Re: Problems running class files with 'scala' on OS X
On 15/01/2009, at 1:12 PM, Kenneth McDonald wrote:
> A quick terminal session will make this clear (the following class
> files were produced by 'scalac'):
>
> Macintosh-5:hello Ken$ ls
> HelloWorld$.class HelloWorld.class
> Macintosh-5:hello Ken$ scala HelloWorld
> no such file: HelloWorld
>
> that should work, but just in case, I tried it using the .class
> extension, which also didn't work:
>
> Macintosh-5:hello Ken$ scala HelloWorld.class
> error: IO error while decoding /Users/Ken/Projects/hello/
> HelloWorld.class with UTF-8
> Please try specifying another one using the -encoding option
> one error found
>
> Any thoughts on what's going wrong here? All feedback most
> appreciated.
Is your CLASSPATH environment variable set? I tried exactly your case
on Mac OS X 10.5.6 with Scala 2.7.3-final and it works fine with
CLASSPATH unset or containing "." as one of the components. If it's
set and doesn't contain "." (or the current directory as a full path),
I understandably get the same behaviour as you.
cheers,
Tony
Also, echo $CLASSPATH
I'm assuming you're using bash, as other Mac users seem to. For more system-specific help, send me a Mac.
2009/1/15 Kenneth McDonald <kenneth.m.mcdonald@sbcglobal.net>