| Thread | Last Post | Replies |
|
| How can i create an editor for JAVA by using swing??? | 25 May 2007 12:33 GMT | 1 |
I just want to know that how can i create an edtor for JAVA by using swing? Is it possible???? We have JEditorPane for HTML & RTF but how we can use same for JAVA??
|
| How get click position on JPanel? | 25 May 2007 10:20 GMT | 2 |
How can I execute an action (or function) when the user will click into the JPanel ??? Any examples may help-me... tanks
|
| Why not using javax.swing.event with swing? | 25 May 2007 01:10 GMT | 2 |
Getting warm with Java this week, I have learned that the usage of Swing is highly recommended. I have seen many examples up to now, most of them actually preferring Swing. However, I wonder why all of them implement the old-fashioned (is it really?) AWT-only eventListener.
|
| J2ME: read and show CSV-files | 24 May 2007 23:53 GMT | 8 |
I'm into JAVA programming for some days only, but I've read many tutorials and documents. It's very great, but my cell-phone (it's a Siemens S65) can't view all the multi-media things :-( I would like to read the content of a CSV-file and print it out
|
| String.replace() in practice | 24 May 2007 23:24 GMT | 27 |
i currently have this: String tmp = "this is text for flash player"; tmp = tmp.replace("š", "š"); tmp = tmp.replace("Š", "Š");
|
| Thread stuck in state NEW? | 24 May 2007 21:50 GMT | 11 |
Hi all, I was planning on doing some swing testing, but ran into a thread issue instead. The problem is a small anonymous thread class I create stays stuck in state NEW, even though it apparently runs an completes.
|
| Facebook bot | 24 May 2007 20:51 GMT | 12 |
Hey guys I'm writing a facebook bot program. Currently I am stuck at the login screen. My approach was to take a password and convert it to md5 along with the challenge parameter that you will notice if you go to facebook's website. To give a better idea of this I'll show you
|
| Instantiation via Reflection | 24 May 2007 20:21 GMT | 5 |
I'm creating a system to parse various different files. Each file has a certain format, so I have different parsers to handle each format which is determined at runtime. Each parser is a subclass of "FileParser." Additionally, each parser has a single constructor that
|
| Collection of strings - two different ways | 24 May 2007 17:23 GMT | 4 |
I was looking at creating a collection of strings and I've seen two different means of doing this List <String> list = new ArrayList <String> ( ); ArrayList <String> list = new ArrayList <String> ( );
|
| How to determine Java version is at least 6? | 24 May 2007 14:09 GMT | 2 |
is there a way to check whether the Java version being used is AT LEAST version 6? My application has a nice UI feature that is only nice if Java 6 or higher is being used. Lower versions result in the good old flickering behaviour. I know there is the "java.version"
|
| Ruby with J2EE | 24 May 2007 13:25 GMT | 3 |
i'm wondering about the profitable use of Ruby in the development of J2EE applications. Do you know if there is a way to integrate Ruby with AJAX, Struts, Spring, EJB and Hibernate? I don't know Ruby, I read somewhere that Ruby can be a substitute of
|
| When user clicks on a link twice before the first click is completely processed.. | 24 May 2007 13:12 GMT | 1 |
This group is really helpful in leveraging ideas. I facing an issue in my current application. Can anybody help in this? The issue is- In my webpage which is JSP, user clicks on a link twice even before
|
| Sending file based on request from the client | 24 May 2007 12:41 GMT | 2 |
Could some one please tell me how to send a file only when a request is made by the client using a client server model. I have got a client and server program running and server can send files to the client but I don't know how to make it work only if there is a request by a
|
| Help with brain puzzle | 24 May 2007 11:55 GMT | 9 |
Does anyone have the old puzzle called Misionaries and Canibals for more than 3 Canibals and 3 Misionaries, for 4 C and 4 M and for 5 C and 5 M. How can this be done? Are there more than one solutions in Java? What is the easiest and smartest way to do it?
|
| write to JEditorPane | 24 May 2007 08:16 GMT | 1 |
This is e real newbie question. I try to write some text to A JEditorPane <snip> JEditorPane display = new JEditorPane();
|