| Thread | Last Post | Replies |
|
| how to persist java.nio.Buffer with javax.persistence ? | 22 Jul 2006 10:07 GMT | 3 |
I don't remember seen in any tutorial how to persist Buffers with the Java Persistence API. Does somebody know how to do ?
|
| Accessing resources in .war from JSP | 22 Jul 2006 10:06 GMT | 3 |
I have a web app deployed as a .war file. There are some images in the root directory of the .war, and they're accessible just fine through the browser, e.g. http://localhost:8080/myApp/test.jpg
|
| do's and dont's with servlets | 22 Jul 2006 10:02 GMT | 5 |
alright, about to start a project with java servlets. I would appreciate if someone would highlight do's and don'ts regarding web based apps in java. My plan is to create a web based database based application with java j2ee, further
|
| STRUTS HTML:FILE - localizing the 'Browse...' button | 22 Jul 2006 06:03 GMT | 1 |
Am I missing something obvious? Is there no way to localize the text that appears on the button (namely 'Browse...') when using the <html:file> tag? I see altKey and titleKey as referring to the resource bundle, but what
|
| SocketPermission error on broadcast. | 22 Jul 2006 04:57 GMT | 4 |
I am trying to broadcast a message. When I am doing this (on FORTE IDE), everything works fine, and I am not getting any exception. When I am trying the follows, and running from the command line :
|
| which char should I write to a file to make a new line? | 22 Jul 2006 02:37 GMT | 7 |
I want to write a String type to a local file the code like: ------------------------------ String src="xxxxxxxxxxxxxxxxxx";
|
| debugging threads with eclipse | 21 Jul 2006 23:15 GMT | 1 |
How do I debug threads using eclipse? I have a bug in one of my threads, but I can't step to it for some reason. Here is an example: class A{
|
| Regexp: how to match string that do not contain a word | 21 Jul 2006 21:01 GMT | 3 |
I have a question regarding Regexp. The string that I need to change is: href="http://www.mysite.com/test1.html" ... href="/test2.html" ... and this is what I would like to get after the replaceAll:
|
| where to have same user.home path or share same properties | 21 Jul 2006 19:30 GMT | 3 |
if an app writes to a file, the location may be user.home, in Windowns it is okay, but in unix, different user have different full-path. I'm wondering, what's the idea to have unique full-path, which is cross-platform? That way same app, event executed twice/more at the
|
| How to extract x amount of bytes from a byte object and store into another byte obj. | 21 Jul 2006 18:20 GMT | 1 |
I am reading bytes from a stream but some are cmoing back corrupt. Someonly return ex. 456. byte[] byteobj= new byte[1024] ; n = _fromGeneva.read(byteobj, 0 , 1024);
|
| JNI window question | 21 Jul 2006 18:03 GMT | 3 |
I have an Java Swing application that has a JFrame. I also call into a native dll using JNI to launch a native dialog from this dll. This native dialog appears below the JFrame and is not visible unless the user looks in the task bar and clicks on it.
|
| create a new windows (xp) service that runs a jar file | 21 Jul 2006 17:57 GMT | 15 |
Does anyone has experience/know how to create a new windows (xp) service that runs a jar file? This issue rises as i need to hide the most of the java implementation in this project before it goes live. So the idea is, to have control on the exceution of the jar from
|
| Find nearest common superclass | 21 Jul 2006 17:31 GMT | 12 |
Given a collection of classes, how can I find their nearest common superclass? It seems like it would be simple enough -- maybe something which iterates over a pair-wise comparison such as this:
|
| TreeCellRenderer | 21 Jul 2006 14:08 GMT | 2 |
I'm trying to create a TreeCellRenderer that would display a files system icon and system name instead of the default icons so I created a class as follows: class FileSystemRenderer extends DefaultTreeCellRenderer {
|
| Creme 3.27 and AWT frames | 21 Jul 2006 13:53 GMT | 1 |
I working on a problem. We have an application in which a signature can be captured. This works perfectly on a PDA (Windows CE, Creme 3.25) but since the upgrade to Windows CE Second Edtion, Creme 3.27 it fails to work.
|