| Thread | Last Post | Replies |
|
| jni on windows (with cygwin) gives UnsatisfiedLinkError | 14 May 2007 11:55 GMT | 6 |
I am learning to use JNI by following the walkthrough contained here; http://java.sun.com/docs/books/jni/html/jniTOC.html The only difference is that I call the files Hello instead of HelloWorld.
|
| Getting Discouraged -- Insights Please | 14 May 2007 11:02 GMT | 11 |
I have several hundred dollars in Java books and not to mention several hours of time invested in learning the language. I see allot of messages and text on the Internet about people not wanting to use Java to write programs and that they do not like Java.
|
| debugger behaviour different to execution behaviour | 14 May 2007 10:51 GMT | 1 |
I've got a program that runs fine when run from the debugger in Eclipse, but when you execute it outwith the debugger the program throws a ConcurrentModificationException. It doesn't seem to be a simple case of http://mindprod.com/jgloss/runerrormessages.html#CONCURRENTMOD
|
| The difference? | 14 May 2007 09:55 GMT | 4 |
What exactly is the difference between JDK 6 SE and J2SE? Is there any compatibility issues? I'm trying to use java for this library, in case anyone's interested. www.opensourcephysics.org
|
| Query:is there the concept of priority level in java's event response system? | 14 May 2007 09:53 GMT | 2 |
I am indulging in java's gui programing these days. Yesterday,I created a tree using class JTree.I've tried two ways to response TreeSelectEvent,one is by implementing interface treeSelectionListener,the other is by MosueListener.
|
| How to solve this problem of initialization | 13 May 2007 19:36 GMT | 4 |
/ Create JradioButton and add to jrpnlRadBtn String temp[] = {"Compilers","Operating Systems","Computer Networks"}; JRadioButton jrbtnSub[];
|
| Choosing standalone tech: SWT / Swing ?? | 13 May 2007 17:20 GMT | 8 |
I need to write a desktop application, i don't need to make it accessible from web (so Struts, Struts 2.0 and webwork are not in the table). I was wondering, what's the industrial standard for J2EE stand alone
|
| wats wrong with my scripts...pls help.. | 13 May 2007 14:23 GMT | 1 |
Im a newb still studying java programming wats wrong with my scripts help..? public class Sample1 {
|
| Hi All | 13 May 2007 13:54 GMT | 2 |
I am jeeva.. I'm new entry for JAVA pragramming language... So any one guide for me....
|
| Want to learn JAVA | 13 May 2007 08:02 GMT | 1 |
hello friends, I want to learn JAVA Programming, to be precice programming for mobile applications ( files with a .JAR ) extention, so what course should i do?? please help me out, i'm completely clueless!!
|
| udp client: destination port unreachable question | 13 May 2007 04:53 GMT | 1 |
My question is concerned with java.net package. I used trivial UDPClient example to send datagrams from local interface eth1 on Linux to the ip host not included into local route table and I tried to capture outgoing udp traffic on interface eth1. I've got IOException
|
| Interrupt a sleeping thread without interrupting I/O | 12 May 2007 18:08 GMT | 10 |
How do I interrupt a sleeping thread without interrupting any I/O that it may be doing? We've got a thread that reads data using an NIO channel, goes to sleep for a minute, wakes up and reads some more, goes to sleep, etc.
|
| A J2EE syslog server? | 12 May 2007 15:27 GMT | 11 |
If I'm using a J2EE container, how can I write a server like a UDP port 515 syslog server that would run in the container? I am guessing a servlet might be needed, but I don't know how to write a servlet as a stateless bean.
|
| Strange things with java... | 12 May 2007 14:48 GMT | 9 |
i have this piece of code Suppose that lstA is List of 3 Objects List<Object> lstA = ...something; List<Object> lstB = lstA;
|
| More enum confusion | 12 May 2007 12:07 GMT | 1 |
The documentation for the Enum method ordinal() states "Most programmers will have no use for this method." Since I can't use an enum constant directly as an array index (which seems like a huge oversight), how else would I use it for indexing *other* than getting the ordinal?
|