| Thread | Last Post | Replies |
|
| mouse icon | 26 Mar 2005 08:17 GMT | 1 |
is there any class that has reference to any mouse icons, like one that appears when a mouse enters a text field?
|
| MySQL / MS SQL - jsp development | 26 Mar 2005 07:58 GMT | 3 |
I am working on a jsp project that uses a MySQL database, i wonder if the backup (.sql) file of MySQL can be executed on a MS SQL server. sorry for sort of off-topic of the forum.
|
| Bluetooth, send msg from soft key evet. | 26 Mar 2005 05:06 GMT | 5 |
I try a bluelet demo, I change some code here, I want to move these codes of run() ======================================================== out.writeUTF( "Boki Back Msg" );
|
| Unit testing JSPs | 26 Mar 2005 05:05 GMT | 6 |
I picked up a copy of _JUnit In Action_ two weeks ago and have been following it to improve my unit testing skills. But, I'm at a stumbling block for unit testing JSPs. I work in Eclipse 3.0, but the book covers testing from Maven. I have no experience with Maven, and can't get ...
|
| Correct way to model a real world object | 26 Mar 2005 00:07 GMT | 6 |
I am having trouble modeling a real world object in Java, hopefully someone can shed some light. I am fairly new to OOP and Java programming, so hopefully I haven't munged the concepts and terms up too bad
|
| JTable.removeColumn() - works as advertised? | 25 Mar 2005 23:12 GMT | 2 |
What does Jtable's removeColumn() method do? Well, according to http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTable.html, it removes a column from a table, but *not* from the underlying model: <Quoting j2se API documentation>
|
| String Manipulation | 25 Mar 2005 22:43 GMT | 3 |
I have an alpha-numeric string. If the 1st position is non-numeric, I need to remove it. For some reason this is causing me difficulty. Can someone show me a way to do this? Example: "R123456789" I want "123456789"
|
| Writer and PrintWriter | 25 Mar 2005 22:34 GMT | 2 |
What is the difference between PrintWriter.write(String) and PrintWriter.print(String)? And how can PrintWriter.write not throw IOException when Writer.write does? Should the overriding method have the same signature?
|
| Help simplify complex regexp needing positive lookahead and reluctant quantifers | 25 Mar 2005 22:06 GMT | 7 |
I'm trying to build a regexp to handle somewhat complex data. My sample data is the following (abstracted from real data): -------------- *XXXlkjsflkw34lkjsfd
|
| B+-Tree | 25 Mar 2005 20:14 GMT | 1 |
Does anybody know of some really good and simple java code for a B+Tree?? Thanks
|
| Where to store application settings | 25 Mar 2005 19:37 GMT | 2 |
I have a few settings in my webapp (address of the LDAP server, location of 2 or 3 files), which are in the source code at the moment. This makes it difficult to change them (and I have to recompile every time). Where is the best place to store these kinds of settings? I thought of ...
|
| Convert a file to xml | 25 Mar 2005 17:58 GMT | 1 |
I am completely new to java and i am trying to create a tree of an output i have. generally the output is tab delimited and i have a sample output as below. Class :Thing
|
| HashMap<> entrySet | 25 Mar 2005 17:47 GMT | 2 |
I am using the current stable release of Eclipse 3.1. I know it is not finalized yet but I am new to generics and am not sure if I am bouncing up against a bug or a mistake in my code. The following code is reported back as an error by Eclipse.
|
| Java Speech Recognition | 25 Mar 2005 17:34 GMT | 1 |
Does anyone know of a free Java speech recognition package, including an example? I need this on Intel only and it will be for an application (not an applet). Any thoughts would be appreciated. Thanks!
|
| Scheduling policy of newly started threads | 25 Mar 2005 17:15 GMT | 5 |
If a new thread is start()'ed, does it by default become the running thread (e.g. on a single CPU machine) or is it just in a runnable state and may or may not be given the cpu immediately? Thanks!
|