> I'm looking for JDK1.2 for Linux as I need CORBA support. I was
> wondering what the timeline is for the release and whether I can help
> with the porting. Thanks
Probably you don't need JDK1.2 for playing with CORBA.
There are few CORBA2 compatible ORBs writen completely in java who
Hello,
I want to load class-files with the
ClassLoader.getResourceAsStream( String )-methode.
i.e. xxx.getResourceAsStream( "package/myClass.class" );
It's works fine on files without a ".class"-postfix.
But files with this prefix are not opened
(the methode reports null).
If i copy the same fi
[EMAIL PROTECTED] wrote:
> yes, u can do that, but the underlying native I/O already uses SIGNALS to catch
>SIGIO,
> SIGALRM which is used to impliment the green_threads/context switching of java (fake)
> threads. So be carefull what sigs u catch, or turn off.
>
>
How would I do that though ?
>What I would like is just a very simple SignalCatcher for SIGTERM,
>SIGQUIT, SIGHUP and SIGINT: just four signals. I want to catach them
>in Java, and write the capture to a systems log. So that at least
>overnight personnel would know how my java batcher died .
Someone wrote just that for Linux
On Mon, Sep 28, 1998 at 10:00:45AM -0400, Nelson Minar wrote:
> >What I would like is just a very simple SignalCatcher for SIGTERM,
> >SIGQUIT, SIGHUP and SIGINT: just four signals. I want to catach them
> >in Java, and write the capture to a systems log. So that at least
> >overnight personnel wo
Hi all gurus!
> [EMAIL PROTECTED] wrote:
>
> > Can Java catch signals ?
> >
> > Could the Java Native Interface be used to help Java catch signals ?
> >
> > * prelim design in my head *
> > I have a huge script that run configurable batch jobs sequently over
several hours.
> > I would like to r
> Bernd Wengenroth writes:
> Hello, I want to load class-files with the
> ClassLoader.getResourceAsStream( String )-methode.
> i.e. xxx.getResourceAsStream( "package/myClass.class" );
> It's works fine on files without a ".class"-postfix. But files with
> this prefix are not opened (the me
Juergen Kreileder wrote:
>
> > Bernd Wengenroth writes:
>
> > Hello, I want to load class-files with the
> > ClassLoader.getResourceAsStream( String )-methode.
>
> > i.e. xxx.getResourceAsStream( "package/myClass.class" );
>
> > It's works fine on files without a ".class"-postfix. But fil
Java Soft broke this function in JDK 1.1 (some time after JDK113, I
think, if memory serves me correctly). I think it is fixed in JDK 1.2,
as I raised this a JavaSoft bug 4138221, which I CAN'T LOOK AT, since it
somehow got logged as a 'security' bug.
Rob
Bernd Wengenroth wrote:
> Hello,
>
> I
Last week Trent Jarvi wrote:
> http://www.interstice.com/~kevinh/projects/javasignals/index.html
Hi Kevin
I will let you know if I get this working with Solaris,
but it is low priority at the mo ...
Cheers
Peter
--
import java.std.disclaimer.*; // "Dontcha just love the API, baby
Hello
Please help! I am having the following problem using swing-1.0.3 with
blackdown's jdk1.1.6 under RedHat linux 5.1:
My profile:
CLASSPATH=.:/opt/java/swing-1.0.3/swingall.jar
JAVA_HOME=/opt/java/jdk1.1.6
SWING_HOME=/opt/java/swing-1.0.3
export CLASSPATH SWING_HOME JAVA_HOME
When I attempt
Bernd Wengenroth wrote:
>
> Paul Reavis wrote:
> >
> > And you should be able to get around it with a custom classloader (which
> > isn't as hard to implement as you might think).
>
> *smile*, that exactly what i want.
> I want to speed up the start of plugin-applications with an own
> class-loa
I extended a TextField component by adding a KeyListener and it works
just fine. But when I did the same thing with a Choice component no
KeyEvents get delivered. Any reason why this would happen?
Gary Mart
[EMAIL PROTECTED]
Paul Reavis wrote:
>
> Juergen Kreileder wrote:
> >
> > > Bernd Wengenroth writes:
> >
> > > Hello, I want to load class-files with the
> > > ClassLoader.getResourceAsStream( String )-methode.
> > > i.e. xxx.getResourceAsStream( "package/myClass.class" );
> >
> > > It's works fine on files wi
My Voyager-based networking works under v2 but breaks under v4 with
a
java.net.SocketException: Socket option unsupported
I'm just trying to connect with the Voyager server at a specified port;
it never even makes the connection. Localhost or LAN doesn't seem to
make a difference.
I'll dig more
Hi,
I'm dealing with a performance issue in java where it appears that
performance is noticably affected by the fact that many (thousands) of
relatively small objects need to be created very quickly (multiple small
memory allocations). From my C/C++ background I would have considered
solving this
"B. Craig Taverner" wrote:
> Hi,
>
> I'm dealing with a performance issue in java where it appears that
> performance is noticably affected by the fact that many (thousands) of
> relatively small objects need to be created very quickly (multiple small
> memory allocations). From my C/C++ backgrou
On Mon, 28 Sep 1998 21:34:24 +0200 (CEST), B. Craig Taverner wrote:
>I'm dealing with a performance issue in java where it appears that
>performance is noticably affected by the fact that many (thousands) of
>relatively small objects need to be created very quickly (multiple small
>memory allocat
> I extended a TextField component by adding a KeyListener and it works
> just fine. But when I did the same thing with a Choice component no
> KeyEvents get delivered. Any reason why this would happen?
KeyEvents get delivered to Choices (at least with v4a) but there are some
known problems
I ran into a rather annoying problem with this library. Perhaps someone else
could confirm the same problem. I wrote a rather large distributed threaded
network management system. When the system was started up lots of log messages
were sent via tcp to a logging server, and the rest of the syste
Hello,
my name is Andrea Controzzi (I'm male) and I write from Italy. I
subscribed the list to follow the development of the JDK for Linux.
I'm near to graduate in Computer Science, so I have experience with C,
C++ and of course Java. I did some exams also on operating systems, including
I have a similar problem when I run Jikes ! But my Swing programs compile
and run OK using the Blackdown Java compiler.
I am using Slackware 3.5 and my environment setup is shown below :
export
CLASSPATH=.:/usr/local/jdk1.1.6v4a/lib/classes.zip:/usr/local/swing-1.0.3/li
b/swingall.jar
and as fo
> "psteele" == psteele <[EMAIL PROTECTED]> writes:
psteele> Hello Please help! I am having the following problem
psteele> using swing-1.0.3 with blackdown's jdk1.1.6 under RedHat
psteele> linux 5.1: My profile:
psteele> CLASSPATH=.:/opt/java/swing-1.0.3/swingall.jar
pste
Craig,
Like C/C++, Java uses strong type constraints to prevent
programmers from accessing data in an inconsistent way
(e.g. casting objects). Unlike C/C++, Java prevents you
from having direct access to program memory. In C/C++,
it is common to use a pointer to locate a variable in memory
a
Hi all,
I'm working on something that requires a static array of almost 400k.
I figured that the best way to initialize this array would be to
compress the data, add a static array with an initializer to put the
compressed data there (gzip compresses it to about 22k, which seems
reasonable), and
please stop mailing for now
thanks
26 matches
Mail list logo