jython and swing

N

Nandan

hello, can I ask a jython question here?

when I use the jython interpreter I have no problem with the statement:

from java import lang
from javax import swing

but when I put this in a script, I get a package not found error.
what am I doing wrong?

the script header is #!/bin/env jython
 
R

Rick Holbert

Could it have something to do with your PATH or CLASSPATH settings?

Here's a test script that works for me:

#!/usr/bin/env jython

from java import lang
from javax import swing

print "lang attributes: "

for attr in dir(lang):
print "\t%s" % attr

print
print "swing attributes: "

for attr in dir(swing):
print "\t%s" % attr

print
print "Good Bye!"

Note: both #!/usr/bin/env jython and #!/bin/env jython seem to work on the
OSU stdsun system...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,213
Messages
2,571,108
Members
47,701
Latest member
LeoraRober

Latest Threads

Top