| Thread | Last Post | Replies |
|
| Precedence of try blocks. | 13 Sep 2005 20:39 GMT | 3 |
Dear Experts, I have a strange problem in the following codes: 1 try { 2 // Some declarations
|
| Help building application | 13 Sep 2005 19:32 GMT | 3 |
I am fairly new to Java. I recently switched from C++ to Java for a project I am working on. I was looking for a decent HTML parser when I came across the htmlparser 1.5 project on Sourceforge.net. I understand the logic, but I am having build problems with my own classes. If ...
|
| Java regex -- using "*" pattern | 13 Sep 2005 18:45 GMT | 9 |
Sorry if I'm asking a question that has been asked a million times before. I need to use the Java regex to match "*" or something like "*DOG*. What do I put into Pattern.compile() to perform that function? Many thanks,
|
| How to remove Java from Linux? | 13 Sep 2005 18:31 GMT | 3 |
Dear Friends, I have to reinstall Java under Linux, so at first I have to remove the old JRE and SDK installed by someone that I do not know. What is the command to remove Java from Linux?
|
| how to get the owner and time information of a file in the UNIX? | 13 Sep 2005 17:28 GMT | 20 |
I wanna get the detailed file information , such as owner, time in the UNIX system. how to implement it in Java? thanks
|
| Quite a dilemma | 13 Sep 2005 15:58 GMT | 15 |
I have 2 classes "ClassA" (mapped to TableA) and "ClassB" (mapped to TableB). There is many-to-many relationship between these classes which is represented by "ClassAB" (mapped to TableAB). ClassAB is a little bit more than just relationship between ClassA and ClassB so we go ...
|
| How can we know if a HttpServletResponse has been redirected ? | 13 Sep 2005 15:48 GMT | 2 |
Maybe this topic has already been treated but I havent found answers.... I have a filter (let say a servlet filter) and I want to know if the response has been redirected by the application before. How can I know that ? (I havent found a getter like isRedirected or whatever
|
| Run JSP stored in a database | 13 Sep 2005 15:25 GMT | 20 |
Within the Tomcat environment I am trying to load JSP code that is stored in a database. I can retrieve the code via JDBC into a string, now I wish to run it. I could save the code to a file and then redirect to the file, but that seems very inefficient.
|
| path setting in Linux for java3d | 13 Sep 2005 11:58 GMT | 12 |
Dear Friends, I am new in Linux although I wrote Java codes under windows for some times. Question here: I tried to run java 3d in Linux, here is the steps:
|
| Tomcat 5.0 config-timeout in seconds?? | 13 Sep 2005 10:40 GMT | 1 |
hello gurus:) maybe it is a stupid question, but nevertheless I am going to ask it:) so is it possible to set the config-timeout in seconds in the web.xml
|
| jsp + servlet + database HELP !!! | 13 Sep 2005 09:54 GMT | 1 |
I write the online-client : http://luftbild.dyndns.org:3080/Guess/numguess.jsp It works pretty well, but there is HUGE PROBLEM. With my site-switch algorythm this program doesn't work with records
|
| How does this Code work? | 13 Sep 2005 09:40 GMT | 12 |
I came across a some code in a program, the program runs fine but the syntax of one line is a little strange. grid.new DataGenerator().start(); The DataGenerator is a timer whos class is in the same file as the grid
|
| Convert UTF8 to SJIS | 13 Sep 2005 09:08 GMT | 17 |
I have been struggling this problem for couple of days and I cannot really figure out a proper way to handle. I appreciate for your great help. Basically, I would like to read the Japanese kanji from the xml file in
|
| Speeding Up Reading URL content from web | 13 Sep 2005 08:12 GMT | 1 |
Is there any way to speed up reading the contents of a URL from the web? I tried doubling/tripling the buffersize of 8192 but that doesn't seem to increase the speed much. Its only doing about 10k/sec I think. URL url = new URL(retrieveUrl);
|
| [JTable] Alignment in custom cell renderer | 13 Sep 2005 08:03 GMT | 4 |
I have a JTable grid, like the one in Java Swing tutorial (see code below). I created custom cell renderer for cells that contain values of type Integer, but the text is aligned to te left insted of usual right. What must I do to align the values on the right.
|