| Thread | Last Post | Replies |
|
| Enable AA font globally | 31 Aug 2004 23:16 GMT | 5 |
on jdk 1.4: (src.zip) javax\swing\JComponent.java, protected void paintComponent(Graphics g) add: Graphics2D g2d = (Graphics2D) g;
|
| classNotFound error | 31 Aug 2004 21:42 GMT | 1 |
I get the following error when I try to use an applet in an XSL stylesheet Error loading class: formatLocation java.lang.NoClassDefFoundError
|
| javac -server | 31 Aug 2004 18:20 GMT | 2 |
Do you know -server option of the standard compiler javac ? It seem make file exe very fast, why ?
|
| Development | 31 Aug 2004 15:17 GMT | 11 |
I am considering learning Java. What is the best development environmnet? Cheers Geoff
|
| JavaScript interpreter/evaluator class? | 31 Aug 2004 13:59 GMT | 3 |
JavaScript interpreter/evaluator class? Does anyone know of a way to parse JavaScript expressions in Java? I am working on a report writer and one of the requirements is a formula facility. The best thing would be to be able to enter JavaScript
|
| Date Arithmetic | 31 Aug 2004 12:46 GMT | 2 |
Arg, So I know I use the Calendar abstract class. And I am betting that I use the Add method. Could I see a example of some date arithmetic, e.g. number of days from
|
| Two applets in the same web page | 31 Aug 2004 00:12 GMT | 4 |
I'm a french beginner in Java, so please forgive my poor knowledges and my poor english. I made an applet and put in in a jar file (named myjar.jar) I wrote html like : <applet ... archive=myjar.jar> with some parameters.
|
| Installation directory path | 30 Aug 2004 16:55 GMT | 9 |
My application needs to keep reading files from the directory in which it will be intsalled. How can I implement this in my code? I don't think that something like System.getProperty("user.dir") is what I am after, as the user may have a batch file and run the application from
|
| Can someone help me with: Applet Hello2 not intended | 30 Aug 2004 16:54 GMT | 5 |
I tried a simple tutorial and it won't work :( I am new to java and just installed: j2sdk1.4.2_05. This looks ok to me (thanks zoopy). But can anyone get me started with this?
|
| A socket is closed without closing it explicitly | 30 Aug 2004 15:03 GMT | 2 |
Could someone explain to me the following phenomenon: I opened a socket and sent data successfully with the following lines: BufferedWriter wr = new BufferedWriter(new OutputStreamWriter(m_socket.getOutputStream()));
|
| Program design question | 30 Aug 2004 14:30 GMT | 3 |
Alright, I'll confess up front that I'm a neophyte when it comes to designing Java programs, that's why I'm hoping for a little advice. I'm designing an agent-based simulation program in which there is an agent ('Agent' class) living within a world ('World' class) that
|
| How to open a socket with username/password? | 30 Aug 2004 13:32 GMT | 3 |
I need to open a socket to an IP address which requires username and password to log in. I use: Socket socket = new Socket(host, port) How do I enter the username and password to this socket instance?
|
| Javac compiles, JBuilder no | 30 Aug 2004 11:54 GMT | 1 |
I'm developing an application made by a Javacard Applet and a Java client. I can't get over this error: My client app compiles and run smoothly with standard javac (jdk 1.4.2). When I try to compile it inside JBuilder i have the following error:
|
| Date/Calendar confusion | 30 Aug 2004 09:02 GMT | 3 |
Given snippet... Date today; today = new Date(); Calendar todayg = Calendar.getInstance();
|
| dynamic class loading | 30 Aug 2004 01:55 GMT | 4 |
Hi all, Im trying to make a client and a server. The server should be able to take "Classes" from the client, run them and return values back to the client. Also eventually I would like to distribute the code to multiple servers so they can all work on a portion of the problem, ...
|