| Thread | Last Post | Replies |
|
| How to change image? | 05 May 2006 04:25 GMT | 2 |
Hello, I am learning Java and I have a question :) In the panorama applet I draw an image into the screen. Image is in variable "pano", which is loaded on the beginning. If I click on the right place on the image, method show_window from applet "target"
|
| win32 OutputDebugString() consumer written in Java | 05 May 2006 01:34 GMT | 2 |
I have windows programs that use OutputDebugString(). (see http://www.unixwiz.net/techtips/outputdebugstring.html for an overview) I would like to be able to write a program which consumes this output in java. My reasoning is that I want to take the debug messages and
|
| Class problem | 05 May 2006 00:07 GMT | 2 |
I have a private class within a file. When I try to do something like this: ReportColumn column = (ReportColumn)r.get(i) I get a message sayiing the type ReportColumn is not visible.
|
| Java WebServices Security/Firewalls? | 04 May 2006 22:45 GMT | 1 |
What are some recommendations with securing Java Web Services application behind a firewall? As far as getting pass the firewall, I heard of recommendations of putting ip address/ port , public key, private key, etc. information
|
| Eclipse with WebLogic plugin | 04 May 2006 20:34 GMT | 1 |
Has anyone mangaged to get this working yet? I am getting the below error when I try to start it. Some of the values I have entered regarding the server instance are: Host Name: localhost
|
| Creating runnable .jar with dependant libraries? | 04 May 2006 20:23 GMT | 2 |
I'm trying to create a jar so the end user can simply start the application like this: java -jar somejar.jar This is all fine except how can I embed libraries (in jars) in this jar
|
| Reading a line from a file | 04 May 2006 20:11 GMT | 6 |
Hi to all, I'm trying to read from a file, line by line, and parse out the data, by using the line.split(" ") function, and I have a file that has 8 entries total per line, which means that it supposed to read up to , array[7], but for some reason, when I run it , it says array
|
| Invisible Paint? | 04 May 2006 20:07 GMT | 1 |
I have a collection of things, some of which I want to draw and others which I want to not draw (not even in the background color because they may cover up some of the visible things). The drawing is being done by JFreeChart, so it would be kind of clumsy to push my
|
| Right click on JTree selection? | 04 May 2006 19:21 GMT | 1 |
I'm new at java and I'm developing an application that uses JTree. I would like to have a different action take place when I right click a selection. Can this be done? If so please let me know how or post a link to an example.
|
| why wouldn't synchronization work in lazy initialization | 04 May 2006 18:24 GMT | 2 |
class Foo{ private static Foo foo=null; public static Foo getFoo(){ if(foo==null){
|
| regexp lookahead | 04 May 2006 17:21 GMT | 3 |
I experimented a bit with the Java regexp lookahead functionality, and the results don't make sense to me. The test is below. 8<========================================>8 public static void main (String [] args)
|
| strange performance behavior of a mathematical method: why? | 04 May 2006 17:21 GMT | 16 |
I've found a difference of about 10% in the execution of 2 version of this method: public double[] evaluate(double input[]){ double a;
|
| Java projects | 04 May 2006 16:55 GMT | 5 |
Iam in the sevent semester of my engineering, i intend to present a project on java, Kindly help me on choosing a good and nice project on the same. Please reply ASAP. Thanks
|
| Program counter | 04 May 2006 16:49 GMT | 3 |
I'm a newbie at programming and I'm trying to write a program that allows me to count the number of times a program is accessed with the result to increment a log file. I can get it to work(ish) with vbs if the user opens up the program first and then opens the file, but as
|
| Threads synchronizing | 04 May 2006 16:22 GMT | 4 |
i have the following problem: in my application, one or more thread must be able to read some information, all together if they want to. At the same time, one thread must be able to modify the informations, and the readers must not gain access when the writer thread is writing.
|