| Thread | Last Post | Replies |
|
| java 6 segfaults loading net or j2gss library | 20 Jan 2007 00:04 GMT | 3 |
I have a one line program System.loadLibrary("net"); When I run it I get a segfault. It also segfaults if I load library "j2gss" but all other libraries in jre/lib load fine.
|
| How to fix possible loss of precision | 19 Jan 2007 20:50 GMT | 6 |
My program is: //program to find the roots of a quadratic eqaution import java.io.*; public class quadratic_roots
|
| "cannot be resolved" eclipse | 19 Jan 2007 18:40 GMT | 1 |
i created a new java project in eclipse from existed source code. after creating it in eclipse i get thousands of errors saying that "xxx cannot be resolved". what could be the reason for these kind of errors? please help me asap
|
| jfreechart with time on y-axis | 19 Jan 2007 17:21 GMT | 1 |
I'm successfully using jfreechart to create an XY line graph ( ChartFactory.createXYLineChart) where the x-axis is int values (distance in km), and the y-axis is also an int values (seconds / km). I'd like to display the y-axis in a "time" format, so a value of say
|
| Synchronized output stream sends data out of order, Possible? | 19 Jan 2007 13:15 GMT | 7 |
I have a strange problem... I have > 1000 threads wanting to send data through synchronized DataOutputStream wrapped around a sockets OutputStream. Replies sent across the internet are received perfectly in the sent order but across the router the stream is somehow
|
| return array of strings to class | 19 Jan 2007 10:22 GMT | 5 |
i'm wriritng a smal programm and i whant to return array of string to class here is an example i whant to do... public class CreateArray{ public static String[] create_str_array(){
|
| broken pipe | 18 Jan 2007 20:44 GMT | 6 |
I need to control an interpreter (4bol, implements some assembler like language) from a java program. The 4bol interpreter sends it's results to standard output, parsing errors to standard error. The problem is that the java source at the end of this posting hangs with a
|
| How do I write an ImageIcon object into a file on my computer? | 18 Jan 2007 18:59 GMT | 19 |
I am about to throw in the towel on Java at this point! Too many questions! How in the world do you do this one (again, in my native PHP it's extremely easy:
|
| Java / JSP / MySQL | 18 Jan 2007 14:06 GMT | 5 |
I'm a newbe to Java / JSP and I'm looking into the language. Currently I'm trying to work with MySQL databases. I have succesfully worked out this simple code to make sure that a MySQL database connection was possible with JSP:
|
| can anybody please check this code out? | 18 Jan 2007 11:10 GMT | 3 |
I'm rather inexperienced in Java but I'm in need of defining a JTable(N,N) with non-editable underdiagonal elements. I do not know if it's better to do it by using TableModel or directly JTable, but I used the latter because it looked easier to me.
|
| ArrayList.add problem | 18 Jan 2007 08:52 GMT | 10 |
I think this is a bit tougher then the last one I posted (which was quite simple). I think I'm missing something fundamental. This code runs, but when I run it and it prints out the contents of the list it shows that all items in the list have the same value as the last item I ...
|
| NullPointerException - why? | 18 Jan 2007 04:16 GMT | 2 |
Can some kind soul look at the following code and tell me why I get a NullPointerException at the last line of code? This looks to me like it should work. Can I not have an ArrayList as a member of class WordPair? import java.util.*;
|
| Determining the cell in a list the mouse is over... | 18 Jan 2007 03:55 GMT | 2 |
I need to do something when the mouse moves over items in a list -- not click on them, just move over them. The problem is, I do not see how to determine the cell that the mouse is over when the mouseevent is fired.
|
| [parsing text file]Problem with a line with only "," | 17 Jan 2007 18:17 GMT | 6 |
Strange in a method I am parsing a text file with this code : do { LineStringValue=entree.readLine(); if (LineStringValue != null) {
|
| JScrollPane doesn't resize properly | 17 Jan 2007 16:33 GMT | 10 |
Hi all, I have a JPanel inside a JScrollPane inside a JFrame. When the content of the JPane changes, its size is updated accordingly, so I would expect that a validate, revalidate or repaint call to the JScrollPane would make the scrollpane modify its scrollbar to suit the new ...
|